Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed May 4, 2023
1 parent 97ee08f commit c74dae1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/issues/GH4313.test.ts
Expand Up @@ -30,7 +30,7 @@ describe('GH issue 4313', () => {
a.complexName = 'a';
const b = new A();
b.complexName = 'b';
await orm.em.persistAndFlush([a,b]);
await orm.em.persistAndFlush([a, b]);
orm.em.clear();
});

Expand Down Expand Up @@ -81,6 +81,5 @@ describe('GH issue 4313', () => {
orderBy: [{ complexName: 'desc' }],
});
expect(data4!.complexName).toBe('b');

});
});

0 comments on commit c74dae1

Please sign in to comment.