aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-09-15 12:51:57 +0200
committerFlorian Dold <florian@dold.me>2023-09-15 12:51:57 +0200
commit5de329e653bb1e2a0b6ad8247cb76d285a98fdc0 (patch)
tree71475c681ca187883776bccc0e724bf312d02909 /packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
parent1d9d63b341e825728120ec7b4eefda496ad32428 (diff)
downloadwallet-core-5de329e653bb1e2a0b6ad8247cb76d285a98fdc0.tar.xz
wallet-core: fix type error in purse_expiration
Diffstat (limited to 'packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts')
-rw-r--r--packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts b/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
index 25c000808..6d9f44fb5 100644
--- a/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
+++ b/packages/taler-harness/src/integrationtests/test-peer-to-peer-pull.ts
@@ -73,7 +73,7 @@ export async function runPeerToPeerPullTest(t: GlobalTestState) {
await withdrawRes.withdrawalFinishedCond;
- const purse_expiration = AbsoluteTime.toProtocolTimestamp(
+ const purseExpiration = AbsoluteTime.toProtocolTimestamp(
AbsoluteTime.addDuration(
AbsoluteTime.now(),
Duration.fromSpec({ days: 2 }),
@@ -87,7 +87,7 @@ export async function runPeerToPeerPullTest(t: GlobalTestState) {
partialContractTerms: {
summary: "Hello World",
amount: "TESTKUDOS:5",
- purse_expiration,
+ purse_expiration: purseExpiration,
},
},
);