Skip to content

Commit

Permalink
0.6.21
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer committed May 12, 2024
1 parent 4114b2c commit d3eb8bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_writer_batch_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def test_reader_writer_complete_anyway_no_records():
)
w.finalize()

g = glob.glob("_temp/**/*.zstd", recursive=True)
g = glob.glob("_temp/**/*.parquet", recursive=True)
assert len(g) == 0, g

c = glob.glob("_temp/**/*.complete", recursive=True)
Expand All @@ -197,7 +197,7 @@ def test_reader_writer_complete_anyway_with_records():
w.append({"character": "Laszlo Cravensworth", "persona": "Jackie Daytona"})
w.finalize()

g = glob.glob("_temp/**/*.zstd", recursive=True)
g = glob.glob("_temp/**/*.parquet", recursive=True)
assert len(g) == 1, g

c = glob.glob("_temp/**/*.complete", recursive=True)
Expand Down

0 comments on commit d3eb8bc

Please sign in to comment.