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

Commit 6647f5b

Browse files
committed
fix(tests): Fixes sort test.
1 parent fa719e3 commit 6647f5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/getEntities/sortTest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export default (facade: Facade<TestId, TestEntity>) => {
4949
it('should sort by two properties when ascending first and descending second', async () => {
5050
await facade.createEntity({ id: firstId, entity: firstEntity });
5151
await facade.createEntity({ id: secondId, entity: secondEntity });
52-
await assertSort([secondEntity, firstEntity], { stringProp: true, numberProp: false });
52+
await assertSort([firstEntity, secondEntity], { stringProp: true, numberProp: false });
5353
});
5454

5555
it('should sort by two properties when descending first and ascending second', async () => {

0 commit comments

Comments
 (0)