1
Fork 0

Fix test timeout error

This commit is contained in:
mikkkee 2023-07-07 20:08:33 +08:00
parent 14a8a84150
commit 5a153691fd
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import pytest
from unittest import mock
from conftest import ac, anki_version, wait_until, \
close_all_dialogs_and_wait_for_them_to_run_closing_callbacks, \
@ -30,7 +31,9 @@ def test_guiDeckOverview(setup):
def test_guiImportFile(setup):
if anki_version >= (2, 1, 52):
ac.guiImportFile()
with mock.patch('aqt.import_export.importing.prompt_for_file_then_import') as mock_prompt_for_file_then_import:
mock_prompt_for_file_then_import.return_value = True
ac.guiImportFile()
class TestAddCards: