fix AsyncTestCase imports
This commit is contained in:
parent
f0e1fc1a49
commit
5cdda0f3a8
8 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
from binascii import hexlify
|
||||
|
||||
from orchstr8.testcase import AsyncioTestCase
|
||||
from torba.testing import AsyncioTestCase
|
||||
|
||||
from torba.coin.bitcoinsegwit import MainNetLedger as ledger_class
|
||||
from torba.baseaccount import HierarchicalDeterministic, SingleKey
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from binascii import unhexlify, hexlify
|
||||
|
||||
from orchstr8.testcase import AsyncioTestCase
|
||||
from torba.testing import AsyncioTestCase
|
||||
|
||||
from .key_fixtures import expected_ids, expected_privkeys, expected_hardened_privkeys
|
||||
from torba.bip32 import PubKey, PrivateKey, from_extended_key_string
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from types import GeneratorType
|
||||
|
||||
from orchstr8.testcase import AsyncioTestCase
|
||||
from torba.testing import AsyncioTestCase
|
||||
|
||||
from torba.coin.bitcoinsegwit import MainNetLedger as ledger_class
|
||||
from torba.coinselection import CoinSelector, MAXIMUM_TRIES
|
||||
|
|
|
@ -5,7 +5,7 @@ from torba.constants import COIN
|
|||
from torba.coin.bitcoinsegwit import MainNetLedger as ledger_class
|
||||
from torba.basedatabase import query, constraints_to_sql
|
||||
|
||||
from orchstr8.testcase import AsyncioTestCase
|
||||
from torba.testing import AsyncioTestCase
|
||||
|
||||
from .test_transaction import get_output, NULL_HASH
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import os
|
||||
from urllib.request import Request, urlopen
|
||||
|
||||
from orchstr8.testcase import AsyncioTestCase
|
||||
from torba.testing import AsyncioTestCase
|
||||
|
||||
from torba.coin.bitcoinsegwit import MainHeaders
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import unittest
|
|||
from binascii import hexlify, unhexlify
|
||||
from itertools import cycle
|
||||
|
||||
from orchstr8.testcase import AsyncioTestCase
|
||||
from torba.testing import AsyncioTestCase
|
||||
|
||||
from torba.coin.bitcoinsegwit import MainNetLedger as ledger_class
|
||||
from torba.wallet import Wallet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import tempfile
|
||||
|
||||
from orchstr8.testcase import AsyncioTestCase
|
||||
from torba.testing import AsyncioTestCase
|
||||
|
||||
from torba.coin.bitcoinsegwit import MainNetLedger as BTCLedger
|
||||
from torba.coin.bitcoincash import MainNetLedger as BCHLedger
|
||||
|
|
|
@ -1 +1 @@
|
|||
from .testcase import IntegrationTestCase
|
||||
from .testcase import IntegrationTestCase, AsyncioTestCase
|
||||
|
|
Loading…
Reference in a new issue