From 006b9a87d19eaa3a0847020ccfaf04054e1139c6 Mon Sep 17 00:00:00 2001 From: DylanDylann Date: Tue, 1 Jul 2025 21:09:44 +0700 Subject: [PATCH] update UTs --- tests/unit/ReportUtilsTest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); });