From 2960d2065b43bc047f0c8eba8fd86be5789c26a7 Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Tue, 24 Oct 2023 12:15:25 +0100 Subject: [PATCH] Fix linting after rebase. --- tests/tests_integration/test_configs.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/tests_integration/test_configs.py b/tests/tests_integration/test_configs.py index 55c503b25..e9daf5180 100644 --- a/tests/tests_integration/test_configs.py +++ b/tests/tests_integration/test_configs.py @@ -282,9 +282,7 @@ def test_supplied_config_file_bad_types(self, project, tmp_path): f"Config file was not updated." ) - def test_supplied_config_file_changes_wrong_order( - self, project, tmp_path - ): + def test_supplied_config_file_changes_wrong_order(self, project, tmp_path): """ Test the situation when a config file is passed with variables in the wrong order. @@ -292,9 +290,7 @@ def test_supplied_config_file_changes_wrong_order( TODO: why should this matter? They should be able to be in any order and just converted to dict? """ - bad_order_configs_path = ( - project._datashuttle_path / "new_configs.yaml" - ) + bad_order_configs_path = project._datashuttle_path / "new_configs.yaml" good_order_configs = test_utils.get_test_config_arguments_dict( tmp_path, project.project_name )