aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/integrationtests
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-10-05 16:01:59 +0200
committerFlorian Dold <florian@dold.me>2022-10-05 16:01:59 +0200
commit99ace8b7d24416f2b184d66006c89b61935e132e (patch)
treead801a936ed6c05c4fb3a16be324f0de50654d8e /packages/taler-wallet-cli/src/integrationtests
parent70d37e4ed30e69c4b3ba2d31a50fd61d82b91252 (diff)
downloadwallet-core-99ace8b7d24416f2b184d66006c89b61935e132e.tar.xz
integration tests: make test-wallet-cryptoworker pass
Diffstat (limited to 'packages/taler-wallet-cli/src/integrationtests')
-rw-r--r--packages/taler-wallet-cli/src/integrationtests/test-wallet-cryptoworker.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-cli/src/integrationtests/test-wallet-cryptoworker.ts b/packages/taler-wallet-cli/src/integrationtests/test-wallet-cryptoworker.ts
index fefdab27a..cc0e23a3c 100644
--- a/packages/taler-wallet-cli/src/integrationtests/test-wallet-cryptoworker.ts
+++ b/packages/taler-wallet-cli/src/integrationtests/test-wallet-cryptoworker.ts
@@ -43,13 +43,13 @@ export async function runWalletCryptoWorkerTest(t: GlobalTestState) {
cryptoWorkerType: "sync",
});
- await wallet1.client.call(WalletApiOperation.CryptoTest, {});
+ await wallet1.client.call(WalletApiOperation.TestCrypto, {});
const wallet2 = new WalletCli(t, "w2", {
cryptoWorkerType: "node-worker-thread",
});
- await wallet2.client.call(WalletApiOperation.CryptoTest, {});
+ await wallet2.client.call(WalletApiOperation.TestCrypto, {});
}
runWalletCryptoWorkerTest.suites = ["wallet"];