Skip to content

Commit

Permalink
HARMONY-1956: Add missing await from db transaction commit in test
Browse files Browse the repository at this point in the history
  • Loading branch information
indiejames committed Nov 13, 2024
1 parent 1829491 commit 0f14fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/harmony/test/labels/label_crud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('Get Labels', function () {
const trx = await db.transaction();
await joeJob.save(trx);
await jillJob.save(trx);
trx.commit();
await trx.commit();
});

describe('When getting labels using the admin route', function () {
Expand Down

0 comments on commit 0f14fbf

Please sign in to comment.