From 632d0b46ff0e2a1f2b3ebebd7727a297c756afa0 Mon Sep 17 00:00:00 2001 From: George Lesica Date: Sun, 1 Mar 2020 08:51:17 -0700 Subject: [PATCH] Fix tests again --- tests/test_functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_functional.py b/tests/test_functional.py index efedd86..58a36f4 100644 --- a/tests/test_functional.py +++ b/tests/test_functional.py @@ -55,7 +55,7 @@ def runit(*args: str) -> Return: def test_cli_version() -> None: ret = runit("--version") assert ret.status == 0 - assert ret.stdout == f"{CURRENT_VERSION}\n" + assert ret.stdout == f"{CURRENT_VERSION}" @pytest.mark.network