diff --git a/tests/integration/wallet/test_transactions.py b/tests/integration/wallet/test_transactions.py
index 9951f18d5..fbe623cab 100644
--- a/tests/integration/wallet/test_transactions.py
+++ b/tests/integration/wallet/test_transactions.py
@@ -101,34 +101,6 @@ class BasicTransactionTest(IntegrationTestCase):
         self.assertEqual('URI lbry://404 cannot be resolved', response['lbry://404']['error'])
         self.assertEqual('URI lbry://@404 cannot be resolved', response['lbry://@404']['error'])
 
-    async def test_new_signature_model(self):
-        address1, address2 = await self.account.receiving.get_addresses(limit=2, only_usable=True)
-        sendtxid1 = await self.blockchain.send_to_address(address1, 5)
-        sendtxid2 = await self.blockchain.send_to_address(address2, 5)
-        await self.blockchain.generate(1)
-        await asyncio.wait([
-            self.on_transaction_id(sendtxid1),
-            self.on_transaction_id(sendtxid2)
-        ])
-
-        self.assertEqual(d2l(await self.account.get_balance()), '10.0')
-
-        cert, key = generate_certificate()
-        cert_tx = await Transaction.claim('@bar', cert, l2d('1.0'), address1, [self.account], self.account)
-        claim = ClaimDict.load_dict(example_claim_dict)
-        claim = claim.sign(key, address1, cert_tx.outputs[0].claim_id, name='foo', curve=SECP256k1, force_detached=True)
-        claim_tx = await Transaction.claim('foo', claim, l2d('1.0'), address1, [self.account], self.account)
-
-        await self.broadcast(cert_tx)
-        await self.broadcast(claim_tx)
-        await self.ledger.wait(claim_tx)
-        await self.blockchain.generate(1)
-        await self.ledger.wait(claim_tx)
-
-        response = await self.ledger.resolve(0, 10, 'lbry://@bar/foo')
-        self.assertIn('lbry://@bar/foo', response)
-        self.assertIn('claim', response['lbry://@bar/foo'])
-
     async def test_new_signature_model_from_unserializable_claim(self):
         address1, address2 = await self.account.receiving.get_addresses(limit=2, only_usable=True)
         sendtxid1 = await self.blockchain.send_to_address(address1, 5)