From 82bef2f7c57060632844b43539f0f1620570bb4a Mon Sep 17 00:00:00 2001 From: xjules Date: Tue, 28 Nov 2023 15:27:13 +0100 Subject: [PATCH] Black test_queue_config --- tests/unit_tests/config/test_queue_config.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/unit_tests/config/test_queue_config.py b/tests/unit_tests/config/test_queue_config.py index 39c7e846efc..a349361783e 100644 --- a/tests/unit_tests/config/test_queue_config.py +++ b/tests/unit_tests/config/test_queue_config.py @@ -134,11 +134,9 @@ def test_that_overwriting_QUEUE_OPTIONS_warns( ErtConfig.from_file(filename) assert ( f"Overwriting QUEUE_OPTION {queue_system} {queue_system_option}: \n Old value:" - " test_0 \n New value: test_1" - in caplog.text + " test_0 \n New value: test_1" in caplog.text and f"Overwriting QUEUE_OPTION {queue_system} MAX_RUNNING: \n Old value:" - " 10 \n New value: 10" - not in caplog.text + " 10 \n New value: 10" not in caplog.text )