Skip to content

Commit 74e4d2b

Browse files
committed
Fix whitespace issue
1 parent fa0cb0c commit 74e4d2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_zstd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1421,11 +1421,11 @@ def test_init_bad_mode(self):
14211421
ZstdFile(io.BytesIO(COMPRESSED_100_PLUS_32KB), "rw")
14221422

14231423
with self.assertRaisesRegex(TypeError, r"NOT be CompressionParameter"):
1424-
ZstdFile(io.BytesIO(), 'rb',
1424+
ZstdFile(io.BytesIO(), 'rb',
14251425
options={CompressionParameter.compression_level:5})
14261426
with self.assertRaisesRegex(TypeError,
14271427
r"NOT be DecompressionParameter"):
1428-
ZstdFile(io.BytesIO(), 'wb',
1428+
ZstdFile(io.BytesIO(), 'wb',
14291429
options={DecompressionParameter.window_log_max:21})
14301430

14311431
with self.assertRaises(TypeError):

0 commit comments

Comments
 (0)