From 36e3f1b3ec43998c39ebb2c462fb47fc2bb18258 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 19 Jun 2019 06:08:43 -0400 Subject: [PATCH] integration test fix --- tests/integration/test_file_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_file_commands.py b/tests/integration/test_file_commands.py index d1b0da87e..a4249b768 100644 --- a/tests/integration/test_file_commands.py +++ b/tests/integration/test_file_commands.py @@ -271,7 +271,7 @@ class FileCommands(CommandTestCase): self.assertEqual(len(self.daemon.jsonrpc_file_list()), 0) response = await self.out(self.daemon.jsonrpc_get('lbry://nofeeaddress')) - self.assertIs(self.daemon.jsonrpc_file_list()[0].stream_claim_info.claim.stream.fee.address, '') + self.assertIsNone(self.daemon.jsonrpc_file_list()[0].stream_claim_info.claim.stream.fee.address) self.assertIsNotNone(response['content_fee']) self.assertEqual(len(self.daemon.jsonrpc_file_list()), 1) self.assertEqual(response['content_fee']['outputs'][0]['amount'], '2.0')