Skip to content

Commit 3f37988

Browse files
committed
remove async
1 parent d79fcfc commit 3f37988

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/TransactionPreviewUtils.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ describe('TransactionPreviewUtils', () => {
273273
expect(result.shouldShowDescription).toBeTruthy();
274274
});
275275

276-
it('should show split share only if user is part of the split bill transaction', async () => {
276+
it('should show split share only if user is part of the split bill transaction', () => {
277277
const functionArgs = {
278278
...basicProps,
279279
isBillSplit: true,
@@ -292,7 +292,7 @@ describe('TransactionPreviewUtils', () => {
292292
expect(result.shouldShowSplitShare).toBeTruthy();
293293
});
294294

295-
it('should not show split share if user is not a participant', async () => {
295+
it('should not show split share if user is not a participant', () => {
296296
const functionArgs = {
297297
...basicProps,
298298
isBillSplit: true,

0 commit comments

Comments
 (0)