From a0cc4f6347f7bce4056b31f879e1d7016d36860f Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Thu, 9 Apr 2020 14:15:56 +0100 Subject: [PATCH] Fix comma/dot typo --- unit_test/main_tests/main_options_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit_test/main_tests/main_options_test.py b/unit_test/main_tests/main_options_test.py index 9439daf68..74cbe3c14 100644 --- a/unit_test/main_tests/main_options_test.py +++ b/unit_test/main_tests/main_options_test.py @@ -164,7 +164,7 @@ def test_test_extras(test_extras, platform_specific, platform, intercepted_build main() - assert intercepted_build_args.args[0],test_extras == ('[' + test_extras + ']' if test_extras else '') + assert intercepted_build_args.args[0].test_extras == ('[' + test_extras + ']' if test_extras else '') @pytest.mark.parametrize('test_command', [None, 'test --command'])