diff --git a/tests/test_cli.py b/tests/test_cli.py index 0d9625b1..bf77fde4 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -463,7 +463,7 @@ class TestRoutes: def expect_order(self, order, output): # skip the header and match the start of each row - for expect, line in zip(order, output.splitlines()[2:]): + for expect, line in zip(order, strict=output.splitlines()[2:]): # do this instead of startswith for nicer pytest output assert line[: len(expect)] == expect