Skip to content

Commit 7d728fa

Browse files
committed
fix
1 parent 4e1b593 commit 7d728fa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ydb/_topic_writer/topic_writer_asyncio_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -486,15 +486,15 @@ async def test_auto_created_at(self, default_driver, default_settings, get_strea
486486
PublicCodec.GZIP,
487487
[b"123"],
488488
[PublicCodec.GZIP],
489-
[gzip.compress(b"123", mtime=time_for_mocks)],
489+
[gzip.compress(b"123")],
490490
),
491491
(
492492
None,
493493
[b"123", b"456", b"789", b"0" * 1000],
494494
[PublicCodec.RAW, PublicCodec.GZIP, PublicCodec.RAW, PublicCodec.RAW],
495495
[
496496
b"123",
497-
gzip.compress(b"456", mtime=time_for_mocks),
497+
gzip.compress(b"456"),
498498
b"789",
499499
b"0" * 1000,
500500
],
@@ -505,9 +505,9 @@ async def test_auto_created_at(self, default_driver, default_settings, get_strea
505505
[PublicCodec.RAW, PublicCodec.GZIP, PublicCodec.GZIP, PublicCodec.GZIP],
506506
[
507507
b"123",
508-
gzip.compress(b"456", mtime=time_for_mocks),
509-
gzip.compress(b"789" * 1000, mtime=time_for_mocks),
510-
gzip.compress(b"0", mtime=time_for_mocks),
508+
gzip.compress(b"456"),
509+
gzip.compress(b"789" * 1000),
510+
gzip.compress(b"0"),
511511
],
512512
),
513513
],

0 commit comments

Comments
 (0)