summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-11-08 18:27:39 +0100
committerFlorian Bruhin <me@the-compiler.org>2022-11-08 18:27:39 +0100
commit4e39f9a8ce8c2fc13f1f95e08fd8e71a7b35accb (patch)
tree49fd6f791c40a5e22741388ccf2a92256d1a4714
parent6e54962fe47a5b262e9fd19db4c328dbbf215b1b (diff)
downloadqutebrowser-4e39f9a8ce8c2fc13f1f95e08fd8e71a7b35accb.tar.gz
qutebrowser-4e39f9a8ce8c2fc13f1f95e08fd8e71a7b35accb.zip
tests: Use snake-case wait_until
-rw-r--r--tests/unit/commands/test_userscripts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/commands/test_userscripts.py b/tests/unit/commands/test_userscripts.py
index f7b6aa466..7cf8f233c 100644
--- a/tests/unit/commands/test_userscripts.py
+++ b/tests/unit/commands/test_userscripts.py
@@ -203,7 +203,7 @@ def test_killed_command(qtbot, tmp_path, py_proc, runner, caplog):
# For some reason, this tends to be flaky on Windows, and we got the
# directoryChanged signal *without* the file existing (wut?)...
- qtbot.waitUntil(data_file.exists)
+ qtbot.wait_until(data_file.exists)
# Make sure the PID was written to the file, not just the file created
time.sleep(0.5)