bug fixes

This commit is contained in:
collerek
2021-06-22 12:58:39 +02:00
parent f197df0ecd
commit 172a6a2be6
7 changed files with 188 additions and 31 deletions

View File

@ -199,7 +199,7 @@ async def test_binary_column():
async def test_binary_str_column():
async with database:
async with database.transaction(force_rollback=True):
await LargeBinaryStr.objects.create(test_binary=blob3)
await LargeBinaryStr(test_binary=blob3).save()
await LargeBinaryStr.objects.create(test_binary=blob4)
items = await LargeBinaryStr.objects.all()