Update tests for calc batch size to accomodate new sqlite logic

This commit is contained in:
Ethan Paul 2023-04-13 14:47:31 -04:00
parent 810d946d38
commit ef94d8f22e
Signed by: enpaul
GPG Key ID: DAF443CA3A2FA6FA

View File

@ -17,7 +17,11 @@ def test_sqlite(fakedb):
data = peewee.IntegerField()
models = [TestModel(item) for item in range(500)]
# Three is just chosen as an arbitrary multiplier to ensure the value is larger than the
# sqlite variable limit
models = [
TestModel(item) for item in range(peewee_plus.SQLITE_DEFAULT_VARIABLE_LIMIT * 3)
]
assert (
peewee_plus.calc_batch_size(models) <= peewee_plus.SQLITE_DEFAULT_VARIABLE_LIMIT
)