From 40279ae7f0520b25f5aecf5b2318a1bb5772c10c Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 19 Jan 2023 16:16:42 -0300 Subject: pretty --- packages/taler-harness/src/harness/libeufin-apis.ts | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'packages/taler-harness/src/harness/libeufin-apis.ts') diff --git a/packages/taler-harness/src/harness/libeufin-apis.ts b/packages/taler-harness/src/harness/libeufin-apis.ts index 2f8e53cc9..a6abe3466 100644 --- a/packages/taler-harness/src/harness/libeufin-apis.ts +++ b/packages/taler-harness/src/harness/libeufin-apis.ts @@ -197,16 +197,13 @@ export namespace LibeufinSandboxApi { username: string, password: string, libeufinSandboxService: LibeufinSandboxServiceInterface, - iban: string|null = null, + iban: string | null = null, ) { - let url = new URL( - "testing/register", - libeufinSandboxService.baseUrl - ); + let url = new URL("testing/register", libeufinSandboxService.baseUrl); await axios.post(url.href, { username: username, password: password, - iban: iban + iban: iban, }); } // Need /demobanks/$id as the base URL @@ -218,10 +215,7 @@ export namespace LibeufinSandboxApi { password: string = "secret", ) { // baseUrl should already be pointed to one demobank. - let url = new URL( - "ebics/subscribers", - libeufinSandboxService.baseUrl - ); + let url = new URL("ebics/subscribers", libeufinSandboxService.baseUrl); await axios.post( url.href, { -- cgit v1.2.3