From 62fa85c0a49adf729d22230b07533af864feaf51 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 17 Feb 2021 12:47:56 -0500 Subject: [PATCH] fix test --- tests/integration/other/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/other/test_cli.py b/tests/integration/other/test_cli.py index a08bb9895..1d733899f 100644 --- a/tests/integration/other/test_cli.py +++ b/tests/integration/other/test_cli.py @@ -36,4 +36,4 @@ class CLIIntegrationTest(AsyncioTestCase): with contextlib.redirect_stdout(actual_output): cli.main(["--api", "localhost:5299", "status"]) actual_output = actual_output.getvalue() - self.assertIn("connection_status", actual_output) + self.assertIn("is_running", actual_output)