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)