diff --git a/tests/unit/ReportUtilsTest.ts b/tests/unit/ReportUtilsTest.ts index bf539f602ce1..b239d35c7d97 100644 --- a/tests/unit/ReportUtilsTest.ts +++ b/tests/unit/ReportUtilsTest.ts @@ -3107,7 +3107,7 @@ describe('ReportUtils', () => { }); it('should return false for regular task report (non-workspace)', () => { - const report = createRegularTaskReport(1, currentUserAccountID); + const report = {...createRegularTaskReport(1, currentUserAccountID), chatType: CONST.REPORT.CHAT_TYPE.TRIP_ROOM}; expect(shouldReportShowSubscript(report)).toBe(false); }); });