From 75c1aafaefd2d08c47b6bde99ee278f64f96b8c9 Mon Sep 17 00:00:00 2001 From: Shahrustam Date: Thu, 23 Apr 2020 20:45:51 +0300 Subject: [PATCH] fix pio account tests --- tests/commands/test_account.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/commands/test_account.py b/tests/commands/test_account.py index dffba357..9198df82 100644 --- a/tests/commands/test_account.py +++ b/tests/commands/test_account.py @@ -312,7 +312,8 @@ def test_account_summary(clirunner, credentials, validate_cliresult, isolated_pi result = clirunner.invoke(cmd_account, ["show"]) validate_cliresult(result) assert credentials["login"] in result.output - assert "DefaultPackage" in result.output + assert "Community" in result.output + assert "100 Concurrent Remote Agents" in result.output result = clirunner.invoke(cmd_account, ["show", "--json-output"]) validate_cliresult(result)