From 6970c95acabbe24ec7bcb0bd46865bd65e7f77df Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 5 Aug 2016 17:59:10 +0300 Subject: [PATCH] Fix command lib test --- tests/commands/test_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/commands/test_lib.py b/tests/commands/test_lib.py index ed4fc603..994417a4 100644 --- a/tests/commands/test_lib.py +++ b/tests/commands/test_lib.py @@ -84,7 +84,7 @@ def test_global_lib_show(clirunner, validate_cliresult, isolated_pio_home): def test_global_lib_update(clirunner, validate_cliresult, isolated_pio_home): result = clirunner.invoke(cli, ["-g", "update"]) validate_cliresult(result) - assert all([s in result.output for s in ("Up-to-date", "Checking")]) + assert all([s in result.output for s in ("[Up-to-date]", "[VCS]")]) def test_global_lib_uninstall(clirunner, validate_cliresult,