From 2eddbc5994688c9086d04b4d62e0df5f1f254fde Mon Sep 17 00:00:00 2001 From: Andrew Murray <3112309+radarhere@users.noreply.github.com> Date: Sun, 3 Dec 2023 14:25:07 +1100 Subject: [PATCH] Updated docstrings --- 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 e0f9fe7de..3a9cc4f10 100644 --- a/Tests/test_file_dds.py +++ b/Tests/test_file_dds.py @@ -42,7 +42,7 @@ TEST_FILE_UNCOMPRESSED_RGB_WITH_ALPHA = "Tests/images/uncompressed_rgb.dds" ), ) def test_sanity_dxt1_bc1(image_path): - """Check DXT1 images can be opened""" + """Check DXT1 and BC1 images can be opened""" with Image.open(TEST_FILE_DXT1.replace(".dds", ".png")) as target: target = target.convert("RGBA") with Image.open(image_path) as im: @@ -90,7 +90,7 @@ def test_sanity_dxt5(): ), ) def test_sanity_ati1_bc4u(image_path): - """Check ATI1 images can be opened""" + """Check ATI1 and BC4U images can be opened""" with Image.open(image_path) as im: im.load()