From c5dfb42a9f114e219264bc404f1fc7fc4e385e1a Mon Sep 17 00:00:00 2001 From: Charlie Chen Date: Wed, 3 Apr 2024 10:14:21 -0500 Subject: [PATCH] remove invalid test --- zetaclient/bitcoin/bitcoin_client_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/zetaclient/bitcoin/bitcoin_client_test.go b/zetaclient/bitcoin/bitcoin_client_test.go index fa7a84b02f..935b41ced4 100644 --- a/zetaclient/bitcoin/bitcoin_client_test.go +++ b/zetaclient/bitcoin/bitcoin_client_test.go @@ -347,12 +347,3 @@ func TestCheckTSSVoutCancelled(t *testing.T) { require.ErrorContains(t, err, "not match TSS address") }) } - -func TestBTCChainClient_ObserveInTx(t *testing.T) { - t.Run("should return error", func(t *testing.T) { - // create mainnet mock client - btcClient := MockBTCClientMainnet() - err := btcClient.ObserveInTx() - require.ErrorContains(t, err, "inbound TXS / Send has been disabled by the protocol") - }) -}