diff --git a/Tests/test_image.py b/Tests/test_image.py index b4e81e46613..69a66b85a71 100644 --- a/Tests/test_image.py +++ b/Tests/test_image.py @@ -401,8 +401,6 @@ def test_alpha_inplace(self): def test_registered_extensions_uninitialized(self): # Arrange Image._initialized = 0 - extension = Image.EXTENSION - Image.EXTENSION = {} # Act Image.registered_extensions() @@ -410,10 +408,6 @@ def test_registered_extensions_uninitialized(self): # Assert assert Image._initialized == 2 - # Restore the original state and assert - Image.EXTENSION = extension - assert Image.EXTENSION - def test_registered_extensions(self): # Arrange # Open an image to trigger plugin registration diff --git a/src/PIL/Image.py b/src/PIL/Image.py index 7d6692fc3a1..18a83550123 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -3417,8 +3417,7 @@ def registered_extensions(): Returns a dictionary containing all file extensions belonging to registered plugins """ - if not EXTENSION: - init() + init() return EXTENSION