diff options
Diffstat (limited to 'packages/merchant-backoffice-ui/src/hooks')
| -rw-r--r-- | packages/merchant-backoffice-ui/src/hooks/reserve.test.ts | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts b/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts index 4068ff8bd..d2831ecff 100644 --- a/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts +++ b/packages/merchant-backoffice-ui/src/hooks/reserve.test.ts @@ -245,7 +245,7 @@ describe("reserve api interaction with details", () => {            expect(query.ok).true;            if (!query.ok) return;            expect(query.data).deep.equals({ -            payto_uri: "payto://here", +            accounts: [{ payto_uri: "payto://here" }],              tips: [{ reason: "why?", tip_id: "id1", total_amount: "USD:10" }],            }); @@ -293,7 +293,7 @@ describe("reserve api interaction with details", () => {            if (!query.ok) return;            expect(query.data).deep.equals({ -            payto_uri: "payto://here", +            accounts: [{ payto_uri: "payto://here" }],              tips: [                { reason: "why?", tip_id: "id1", total_amount: "USD:10" },                { reason: "not", tip_id: "id2", total_amount: "USD:12" }, @@ -340,7 +340,7 @@ describe("reserve api interaction with details", () => {            expect(query.ok).true;            if (!query.ok) return;            expect(query.data).deep.equals({ -            payto_uri: "payto://here", +            accounts: [{ payto_uri: "payto://here" }],              tips: [{ reason: "why?", tip_id: "id1", total_amount: "USD:10" }],            }); @@ -386,7 +386,7 @@ describe("reserve api interaction with details", () => {            if (!query.ok) return;            expect(query.data).deep.equals({ -            payto_uri: "payto://here", +            accounts: [{ payto_uri: "payto://here" }],              tips: [                { reason: "why?", tip_id: "id1", total_amount: "USD:10" },                { reason: "not", tip_id: "id2", total_amount: "USD:12" },  | 
