diff options
author | Florian Dold <florian@dold.me> | 2021-01-05 11:26:29 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-01-05 11:26:29 +0100 |
commit | 981ef46267e0b1768b455307ab783874c3006262 (patch) | |
tree | 0aae278cfdf9c4aaf8b3f932f4e75fe6bc379750 | |
parent | 03810fd2485f51966a1b805e4aaaedccad5a5f60 (diff) |
fix import
-rw-r--r-- | packages/taler-integrationtests/src/test-timetravel-autorefresh.ts | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/packages/taler-integrationtests/src/test-timetravel-autorefresh.ts b/packages/taler-integrationtests/src/test-timetravel-autorefresh.ts index 24e9116df..382051c8a 100644 --- a/packages/taler-integrationtests/src/test-timetravel-autorefresh.ts +++ b/packages/taler-integrationtests/src/test-timetravel-autorefresh.ts @@ -18,28 +18,24 @@ * Imports. */ import { - runTest, + ConfirmPayResultType, + Duration, + durationFromSpec, + PendingOperationsResponse, + PreparePayResultType, +} from "taler-wallet-core"; +import { makeNoFeeCoinConfig } from "./denomStructures"; +import { + BankService, + ExchangeService, GlobalTestState, MerchantPrivateApi, - ExchangeService, MerchantService, - WalletCli, + runTest, setupDb, - BankService, + WalletCli, } from "./harness"; -import { - createSimpleTestkudosEnvironment, - withdrawViaBank, - startWithdrawViaBank, -} from "./helpers"; -import { - Duration, - durationFromSpec, - PreparePayResultType, - ConfirmPayResultType, -} from "taler-wallet-core"; -import { PendingOperationsResponse } from "taler-wallet-core/lib/types/pending"; -import { defaultCoinConfig, makeNoFeeCoinConfig } from "./denomStructures"; +import { startWithdrawViaBank, withdrawViaBank } from "./helpers"; async function applyTimeTravel( timetravelDuration: Duration, |