From c5af85f123aa3056b1d7d9190581b6754ec4eb59 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 4 Feb 2018 01:04:53 +0200 Subject: [PATCH] Fix issue with multiple OneWire libs and infinite pause --- 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 8513d401..a4c31bce 100644 --- a/tests/commands/test_lib.py +++ b/tests/commands/test_lib.py @@ -253,7 +253,7 @@ def test_lib_show(clirunner, validate_cliresult): validate_cliresult(result) assert all( [s in result.output for s in ("ArduinoJson", "Arduino", "Atmel AVR")]) - result = clirunner.invoke(cmd_lib, ["show", "OneWire"]) + result = clirunner.invoke(cmd_lib, ["show", "OneWire", "--json-output"]) validate_cliresult(result) assert "OneWire" in result.output