Skip to content

Commit 7eb0615

Browse files
committed
Fixing tests
1 parent c1b9848 commit 7eb0615

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/django_s3_storage_test/tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def testSaveTextMode(self):
8888
with self.save_file(content="foo"):
8989
self.assertEqual(default_storage.open("foo.txt").read(), b"foo")
9090

91-
@unittest.skipIf(sys.version_info < (3, 12))
91+
@unittest.skipIf(sys.version_info < (3, 11), reason="Python 3.11 required")
9292
def testOpenTextMode(self):
9393
with self.save_file(content="foo"):
9494
self.assertEqual(default_storage.open("foo.txt", "r").read(), "foo")

0 commit comments

Comments
 (0)