Skip to content

Commit a359da7

Browse files
fix: update test_seed.py to check for int batch size
calc_batch_size returns an int, but the fixture was looking for a float batch size.
1 parent 06b6edd commit a359da7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/functional/adapter/test_seed.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def test_custom_batch_size(self, project, logs_dir):
243243
logs = "".join(fp.readlines())
244244
# this is changed from 350.
245245
# Fabric goes -1 of min batch of (2100/number of columns -1) or 400
246-
assert "Inserting batches of 349.0 records" in logs
246+
assert "Inserting batches of 349 records" in logs
247247

248248

249249
class SeedConfigBase:

0 commit comments

Comments
 (0)