diff --git a/tests/basicswap/test_run.py b/tests/basicswap/test_run.py index 9cfd2f0..4bb2ed1 100644 --- a/tests/basicswap/test_run.py +++ b/tests/basicswap/test_run.py @@ -662,9 +662,9 @@ class Test(BaseTest): offer_id = swap_clients[0].postOffer( Coins.BTC, Coins.LTC, - 0.001 * COIN, + 0.01 * COIN, 1.0 * COIN, - 0.001 * COIN, + 0.01 * COIN, SwapTypes.SELLER_FIRST, ) @@ -692,17 +692,8 @@ class Test(BaseTest): def test_08_part_ltc_buyer_first(self): logging.info("---------- Test PART to LTC, buyer first") - swap_clients = self.swap_clients - - swap_clients[0].postOffer( - Coins.PART, - Coins.LTC, - 100 * COIN, - 0.1 * COIN, - 100 * COIN, - SwapTypes.BUYER_FIRST, - ) + # SwapTypes.BUYER_FIRST logging.warning("TODO") def test_09_part_ltc_auto_accept(self): diff --git a/tests/basicswap/test_xmr.py b/tests/basicswap/test_xmr.py index 4404f82..e575ef1 100644 --- a/tests/basicswap/test_xmr.py +++ b/tests/basicswap/test_xmr.py @@ -561,7 +561,7 @@ class BaseTest(unittest.TestCase): base_p2p_port=LTC_BASE_PORT, base_rpc_port=LTC_BASE_RPC_PORT, ) - if os.path.exists( + if not os.path.exists( os.path.join(cfg.LITECOIN_BINDIR, ltc_wallet_bin) ): logging.warning(f"{ltc_wallet_bin} not found.")