From f27e246290171e4390d2262782e7a7985575b428 Mon Sep 17 00:00:00 2001 From: buzzingwires Date: Tue, 11 Jul 2023 13:54:12 -0400 Subject: [PATCH] Remove redundant configuration file reading tests. --- tests/integration/test_read_settings.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/integration/test_read_settings.py b/tests/integration/test_read_settings.py index 6a863d5a9..f52cb66bd 100644 --- a/tests/integration/test_read_settings.py +++ b/tests/integration/test_read_settings.py @@ -19,7 +19,7 @@ UPDATED_CONFIG = { "SORT": {"shuffle": "True"}, "IMAGE": {"overzoom": "4.2"}, - "THUMBNAIL": {"size": "64", "save": "False"}, + "THUMBNAIL": {"size": "64"}, } @@ -46,7 +46,7 @@ UPDATED_CONFIG_INVALID = { "SORT": {"shuffle": "not a bool"}, "IMAGE": {"overzoom": "not a float"}, - "THUMBNAIL": {"size": "not an int", "save": "not a bool"}, + "THUMBNAIL": {"size": "not an int"}, } @@ -86,7 +86,6 @@ def test_read_config(configpath): assert api.settings.sort.shuffle.value is True assert api.settings.image.overzoom.value == 4.2 assert api.settings.thumbnail.size.value == 64 - assert api.settings.thumbnail.save.value is False @pytest.mark.parametrize(