diff --git a/scripts/test_claim_search.py b/scripts/test_claim_search.py index a376d7bed..6c600bf4d 100644 --- a/scripts/test_claim_search.py +++ b/scripts/test_claim_search.py @@ -12,7 +12,7 @@ async def main(): try: hostname = sys.argv[1] except IndexError: - hostname = 'spv1.lbry.com' + hostname = 'spv11.lbry.com' loop = asyncio.get_event_loop() client = ClientSession(network=None, server=(hostname, 50001)) diff --git a/tests/integration/other/test_other_commands.py b/tests/integration/other/test_other_commands.py index ecfef90da..a28afa525 100644 --- a/tests/integration/other/test_other_commands.py +++ b/tests/integration/other/test_other_commands.py @@ -21,5 +21,5 @@ class SettingsManagement(CommandTestCase): self.assertEqual(self.daemon.jsonrpc_settings_get()['lbryum_servers'][0], ('server', 50001)) setting = self.daemon.jsonrpc_settings_clear('lbryum_servers') - self.assertEqual(setting['lbryum_servers'][0], ('spv1.lbry.com', 50001)) - self.assertEqual(self.daemon.jsonrpc_settings_get()['lbryum_servers'][0], ('spv1.lbry.com', 50001)) + self.assertEqual(setting['lbryum_servers'][0], ('spv11.lbry.com', 50001)) + self.assertEqual(self.daemon.jsonrpc_settings_get()['lbryum_servers'][0], ('spv11.lbry.com', 50001))