Skip to content

Commit 69982f3

Browse files
committed
Merge branch 'main' into refactor-66578-p2
1 parent 1e57c6e commit 69982f3

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

tests/actions/PolicyTest.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5995,7 +5995,18 @@ describe('actions/Policy', () => {
59955995

59965996
// eslint-disable-next-line @typescript-eslint/naming-convention
59975997
const mockTranslate = ((key: string) => key) as unknown as Parameters<typeof Policy.createWorkspaceFromIOUPayment>[7];
5998-
const result = Policy.createWorkspaceFromIOUPayment(iouReport, undefined, ESH_ACCOUNT_ID, ESH_EMAIL, iouReportOwnerEmail, undefined, undefined, mockTranslate, reportActionsList);
5998+
const result = Policy.createWorkspaceFromIOUPayment(
5999+
iouReport,
6000+
undefined,
6001+
ESH_ACCOUNT_ID,
6002+
ESH_EMAIL,
6003+
iouReportOwnerEmail,
6004+
undefined,
6005+
CONST.CURRENCY.USD,
6006+
undefined,
6007+
mockTranslate,
6008+
reportActionsList,
6009+
);
59996010

60006011
// Verify the function returns a valid result (not undefined)
60016012
expect(result).toBeDefined();

0 commit comments

Comments
 (0)