We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4760b13 commit 620a3deCopy full SHA for 620a3de
tests/test_wait_signal.py
@@ -1372,7 +1372,8 @@ def test_signal_raised_from_thread(pytester: pytest.Pytester) -> None:
1372
Extracted from https://github.com/pytest-dev/pytest-qt/issues/586
1373
"""
1374
count = 500 # hopefully enough to trigger the bug reliably
1375
- pytester.makepyfile(f"""
+ pytester.makepyfile(
1376
+ f"""
1377
import pytest
1378
from pytestqt.qt_compat import qt_api
1379
@@ -1394,7 +1395,8 @@ def test_thread(qtbot, _):
1394
1395
finally:
1396
thread.quit()
1397
thread.wait()
- """)
1398
+ """
1399
+ )
1400
1401
res = pytester.runpytest_subprocess()
1402
res.assert_outcomes(passed=count)
0 commit comments