From 0a1e97fe23758bcfe1f2ef6993a3304e3a122e05 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 26 Apr 2019 22:49:42 -0400 Subject: [PATCH] cli test fix --- tests/unit/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_cli.py b/tests/unit/test_cli.py index fe0e15943..d08d38564 100644 --- a/tests/unit/test_cli.py +++ b/tests/unit/test_cli.py @@ -61,7 +61,7 @@ class CLITest(AsyncioTestCase): # publish is ungrouped command, returns usage only implicitly self.assertIn('publish ( | --name=)', self.shell(['publish'])) # publish is ungrouped command, with explicit --help - self.assertIn('Create or update a stream claim at a given name', self.shell(['publish', '--help'])) + self.assertIn('Create or replace a stream claim at a given name', self.shell(['publish', '--help'])) # account is a group, returns help implicitly self.assertIn('Return the balance of an account', self.shell(['account'])) # account is a group, with explicit --help