From 1715766449446d9807685e92c7a9c7af9118b5cc Mon Sep 17 00:00:00 2001 From: Adam Dybbroe Date: Tue, 11 Jan 2022 13:20:23 +0100 Subject: [PATCH] Update aapp_runner/tests/test_helper_functions.py Co-authored-by: Gerrit Holl --- aapp_runner/tests/test_helper_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aapp_runner/tests/test_helper_functions.py b/aapp_runner/tests/test_helper_functions.py index 8065e2d..7100e80 100644 --- a/aapp_runner/tests/test_helper_functions.py +++ b/aapp_runner/tests/test_helper_functions.py @@ -68,7 +68,7 @@ def test_check_if_scene_is_unique_return_value(self, config): aapp_config['endtime'] = datetime(2022, 1, 8, 13, 0) result = check_if_scene_is_unique(aapp_config) - assert result is False + assert not result @patch('aapp_runner.read_aapp_config.load_config_from_file') def test_check_if_scene_is_unique_logging(self, config):