Skip to content

Commit da73bd3

Browse files
committed
update
1 parent 6925f87 commit da73bd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/orm/policy/crud/read.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ model Bar {
294294

295295
await db.$unuseAll().foo.create({ data: { id: 1 } });
296296
await expect(db.foo.findMany()).resolves.toHaveLength(0);
297-
await db.foo.update({ where: { id: 1 }, data: { bar: { create: { id: 1, y: 0 } } } });
297+
await db.$unuseAll().foo.update({ where: { id: 1 }, data: { bar: { create: { id: 1, y: 0 } } } });
298298
await expect(db.foo.findMany()).resolves.toHaveLength(1);
299299
});
300300

0 commit comments

Comments
 (0)