From 02f53a9b0d5d110ccba7ca3c656dba87dab73326 Mon Sep 17 00:00:00 2001 From: Dasha2205 <118978468+Dasha2205@users.noreply.github.com> Date: Thu, 22 Dec 2022 12:16:54 +0300 Subject: [PATCH] Update test_cli.py --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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