From d1b1f30cef4bb93551268789ba08952d0aa4452e Mon Sep 17 00:00:00 2001 From: REDxEYE Date: Wed, 10 Aug 2022 03:22:39 +0300 Subject: [PATCH] Fix file extensions in tests not matching real names --- Tests/test_file_dds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/test_file_dds.py b/Tests/test_file_dds.py index 88032e4ae..7f85a9256 100644 --- a/Tests/test_file_dds.py +++ b/Tests/test_file_dds.py @@ -327,8 +327,8 @@ def test_save(mode, test_file, tmp_path): [ ("L", "Tests/images/l.png", "Tests/images/l.dds"), ("LA", "Tests/images/la.png", "Tests/images/la.dds"), - ("RGB", "Tests/images/rgb.png", "Tests/images/rgb.DDS"), - ("RGBA", "Tests/images/rgba.png", "Tests/images/rgba.DDS"), + ("RGB", "Tests/images/rgb.png", "Tests/images/rgb.dds"), + ("RGBA", "Tests/images/rgba.png", "Tests/images/rgba.dds"), ], ) def test_open(mode, expected_file, input_file):