Skip to content

Commit 4068cd2

Browse files
committed
fix spelling
1 parent b340f67 commit 4068cd2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/unit/ReportActionsUtilsTest.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1382,8 +1382,8 @@ describe('ReportActionsUtils', () => {
13821382
});
13831383

13841384
describe('shouldReportActionBeVisible', () => {
1385-
it('should return false for MOVEDTRANSACTION if the report destination is unavailable', () => {
1386-
// Given a MOVEDTRANSACTION action but the report destination is not available
1385+
it('should return false for moved transaction if the report destination is unavailable', () => {
1386+
// Given a moved transaction action but the report destination is not available
13871387
const reportAction: ReportAction<typeof CONST.REPORT.ACTIONS.TYPE.MOVED_TRANSACTION> = {
13881388
actionName: CONST.REPORT.ACTIONS.TYPE.MOVED_TRANSACTION,
13891389
reportActionID: '1',
@@ -1398,8 +1398,8 @@ describe('ReportActionsUtils', () => {
13981398
expect(actual).toBe(false);
13991399
});
14001400

1401-
it('should return true for MOVEDTRANSACTION if the report destination is available', async () => {
1402-
// Given a MOVEDTRANSACTION action but the report destination is available
1401+
it('should return true for moved transaction if the report destination is available', async () => {
1402+
// Given a moved transaction action but the report destination is available
14031403
const report: Report = createRandomReport(2);
14041404
await Onyx.merge(`${ONYXKEYS.COLLECTION.REPORT}${report.reportID}`, report);
14051405
const reportAction: ReportAction<typeof CONST.REPORT.ACTIONS.TYPE.MOVED_TRANSACTION> = {

0 commit comments

Comments
 (0)