Skip to content

Commit 917a76c

Browse files
committed
Fix lint-changed
1 parent f46dadd commit 917a76c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/actions/IOUTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6892,8 +6892,8 @@ describe('actions/IOU', () => {
68926892

68936893
// Then: Verify IOU actions were marked as deleted
68946894
const updatedReportActions = await getOnyxValue(`${ONYXKEYS.COLLECTION.REPORT_ACTIONS}${reportID}`);
6895-
expect(updatedReportActions?.action456?.originalMessage).toHaveProperty('deleted');
6896-
expect(updatedReportActions?.action789?.originalMessage).toHaveProperty('deleted');
6895+
expect(getOriginalMessage(updatedReportActions?.action456)).toHaveProperty('deleted');
6896+
expect(getOriginalMessage(updatedReportActions?.action789)).toHaveProperty('deleted');
68976897

68986898
// Then: Verify API was called with correct parameters
68996899
expect(writeSpy).toHaveBeenCalledWith(

0 commit comments

Comments
 (0)