Skip to content

Commit 2489956

Browse files
committed
ruff: fix string formatting
1 parent d9985ce commit 2489956

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pytest_httpserver/httpserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@ def test_wait(httpserver):
13291329
waiting.complete(result=False)
13301330
if self._waiting_settings.raise_assertions:
13311331
raise AssertionError(
1332-
"Wait timeout occurred, but some handlers left:\n" "{}".format(self.format_matchers())
1332+
"Wait timeout occurred, but some handlers left:\n{}".format(self.format_matchers())
13331333
)
13341334
if self._waiting_settings.raise_assertions and not waiting.result:
13351335
self.check_assertions()

0 commit comments

Comments
 (0)