We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_to_parquet_overwrite
1 parent ec4170b commit 34a5efcCopy full SHA for 34a5efc
tests/test_historical_bento.py
@@ -365,14 +365,15 @@ def test_to_parquet_overwrite(
365
dbnstore = DBNStore.from_bytes(data=stub_data)
366
parquet_path = tmp_path / "my_test.parquet"
367
dbnstore.to_parquet(path=parquet_path)
368
- assert parquet_path.stat().st_size == 9888
+ parquet_size = parquet_path.stat().st_size
369
370
# Act
371
372
373
# Assert
374
+ assert parquet_size > 0 # Should be about ~9000 bytes
375
assert parquet_path.exists()
376
+ assert parquet_path.stat().st_size == parquet_size
377
378
379
def test_to_parquet_exclusive(
0 commit comments