Skip to content

Commit f3bf07e

Browse files
committed
fix failing check
1 parent 8eab4b4 commit f3bf07e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/unit/ReportActionsUtilsTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2274,7 +2274,7 @@ describe('ReportActionsUtils', () => {
22742274
newValue: true,
22752275
},
22762276
};
2277-
const actual = ReportActionsUtils.getWorkspaceCustomUnitRateUpdatedMessage(action);
2277+
const actual = ReportActionsUtils.getWorkspaceCustomUnitRateUpdatedMessage(translateLocal, action);
22782278
expect(actual).toBe('enabled the Distance rate "Default Rate"');
22792279
});
22802280

@@ -2291,7 +2291,7 @@ describe('ReportActionsUtils', () => {
22912291
newValue: false,
22922292
},
22932293
};
2294-
const actual = ReportActionsUtils.getWorkspaceCustomUnitRateUpdatedMessage(action);
2294+
const actual = ReportActionsUtils.getWorkspaceCustomUnitRateUpdatedMessage(translateLocal, action);
22952295
expect(actual).toBe('disabled the Distance rate "Default Rate"');
22962296
});
22972297
});

0 commit comments

Comments
 (0)