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

Commit 90a27e7

Browse files
committed
fix(tests): Fixes first pagination test.
1 parent dc22276 commit 90a27e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/getEntities/paginationTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default (facade: Facade<TestId, TestEntity>) => {
2929
await createTestEntities();
3030
const pagination: Pagination = { cursor: undefined, forward: true, limit: 1 };
3131
const result = await facade.getEntities({ filter, sort, pagination });
32-
assert.deepEqual(result.entities, [testEntity]);
32+
assert.deepEqual(result.entities, [firstEntity]);
3333
});
3434

3535
it('should return first entity when paginating forward without cursor', async () => {

0 commit comments

Comments
 (0)