Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit c72fe13

Browse files
committed
fix(tests): Corrects patch test.
1 parent 7c46d37 commit c72fe13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/patchEntity/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default (facade: Facade<TestId, TestEntity>) => {
1919
};
2020

2121
it('should error when identifier does not exist', async () => {
22-
const promise = facade.overwriteEntity({ id: testId, entity: testEntity });
22+
const promise = facade.patchEntity({ id: testId, patch: testEntity });
2323
await assertRejects(promise, MissingEntityError);
2424
});
2525

0 commit comments

Comments
 (0)