From ccd289904dbfd49014b19ee9b480581cb4391a3e Mon Sep 17 00:00:00 2001 From: Sebastian Date: Sun, 26 Jun 2022 15:52:32 -0300 Subject: - typo fix --- packages/taler-wallet-cli/src/harness/harness.ts | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'packages/taler-wallet-cli/src') diff --git a/packages/taler-wallet-cli/src/harness/harness.ts b/packages/taler-wallet-cli/src/harness/harness.ts index b53047e5d..74a523343 100644 --- a/packages/taler-wallet-cli/src/harness/harness.ts +++ b/packages/taler-wallet-cli/src/harness/harness.ts @@ -444,7 +444,7 @@ function setCoin(config: Configuration, c: CoinConfig) { } /** - * Send an HTTP request until it suceeds or the process dies. + * Send an HTTP request until it succeeds or the process dies. */ export async function pingProc( proc: ProcessWrapper | undefined, @@ -478,7 +478,7 @@ class BankServiceBase { protected globalTestState: GlobalTestState, protected bankConfig: BankConfig, protected configFile: string, - ) {} + ) { } } /** @@ -923,7 +923,7 @@ export class FakeBankService { private globalTestState: GlobalTestState, private bankConfig: FakeBankConfig, private configFile: string, - ) {} + ) { } async start(): Promise { this.proc = this.globalTestState.spawnService( @@ -1189,7 +1189,7 @@ export class ExchangeService implements ExchangeServiceInterface { private exchangeConfig: ExchangeConfig, private configFilename: string, private keyPair: EddsaKeyPair, - ) {} + ) { } get name() { return this.exchangeConfig.name; @@ -1412,7 +1412,7 @@ export class MerchantApiClient { constructor( private baseUrl: string, public readonly auth: MerchantAuthConfiguration, - ) {} + ) { } async changeAuth(auth: MerchantAuthConfiguration): Promise { const url = new URL("private/auth", this.baseUrl); @@ -1605,7 +1605,7 @@ export class MerchantService implements MerchantServiceInterface { private globalState: GlobalTestState, private merchantConfig: MerchantConfig, private configFilename: string, - ) {} + ) { } private currentTimetravel: Duration | undefined; @@ -1917,10 +1917,8 @@ export class WalletCli { const resp = await sh( self.globalTestState, `wallet-${self.name}`, - `taler-wallet-cli ${ - self.timetravelArg ?? "" - } --no-throttle -LTRACE --wallet-db '${ - self.dbfile + `taler-wallet-cli ${self.timetravelArg ?? "" + } --no-throttle -LTRACE --wallet-db '${self.dbfile }' api '${op}' ${shellWrap(JSON.stringify(payload))}`, ); console.log("--- wallet core response ---"); -- cgit v1.2.3