(db)
| 507 | |
| 508 | @pytest.mark.asyncio |
| 509 | async def test_update_badparam(db): |
| 510 | obj0 = await IntFields.create(intnum=2147483647) |
| 511 | with pytest.raises(FieldError, match="Unknown keyword argument"): |
| 512 | await IntFields.filter(id=obj0.id).update(badparam=1) |
| 513 | |
| 514 | |
| 515 | @pytest.mark.asyncio |