diff --git a/tests/common/storages/test_local_filesystem.py b/tests/common/storages/test_local_filesystem.py index 08ebf28807..2e62043a7e 100644 --- a/tests/common/storages/test_local_filesystem.py +++ b/tests/common/storages/test_local_filesystem.py @@ -51,7 +51,7 @@ def test_filesystem_decompress() -> None: with file_dict.open(mode="tr") as f: lines = f.readlines() assert len(lines) > 1 - assert lines[0].startswith('"1200864931","2015-07-01 00:00:13"') + assert lines[0].startswith('"1200864931","2015-07-01 00:00:13"') # type: ignore # read as uncompressed binary with file_dict.open(compression="enable") as f: assert f.read().startswith(b'"1200864931","2015-07-01 00:00:13"')