From ad7e3f83aa09e92bbfd090d418029ab7022f16af Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 8 Apr 2020 17:18:59 +0300 Subject: [PATCH] Fix tests/commands/test_init.py --- docs | 2 +- tests/commands/test_init.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs b/docs index 41f192fc..22080ab2 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 41f192fc0b2f2ce3a867bdabb837abcbd0d85806 +Subproject commit 22080ab2442f07216a7c2727723b9f80fd5090c0 diff --git a/tests/commands/test_init.py b/tests/commands/test_init.py index fccdee7d..b874ead7 100644 --- a/tests/commands/test_init.py +++ b/tests/commands/test_init.py @@ -156,5 +156,5 @@ def test_init_custom_framework(clirunner, validate_cliresult): def test_init_incorrect_board(clirunner): result = clirunner.invoke(cmd_init, ["-b", "missed_board"]) assert result.exit_code == 2 - assert 'Error: Invalid value for "-b" / "--board' in result.output + assert "Error: Invalid value for" in result.output assert isinstance(result.exception, SystemExit)