From 852d9156bca9946f590fb12b3a1f476c1330b7df Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Sat, 15 Feb 2020 16:21:37 +0200 Subject: [PATCH] Remove commas Co-Authored-By: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- 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 66db429a1..d157e15fd 100644 --- a/Tests/test_file_dds.py +++ b/Tests/test_file_dds.py @@ -89,7 +89,7 @@ def test_dx10_bc7_unorm_srgb(): def test_unimplemented_dxgi_format(): with pytest.raises(NotImplementedError): - Image.open("Tests/images/unimplemented_dxgi_format.dds",) + Image.open("Tests/images/unimplemented_dxgi_format.dds") def test_uncompressed_rgb(): @@ -158,4 +158,4 @@ def test_short_file(): def test_unimplemented_pixel_format(): with pytest.raises(NotImplementedError): - Image.open("Tests/images/unimplemented_pixel_format.dds",) + Image.open("Tests/images/unimplemented_pixel_format.dds")