We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 838fc4d commit 7016f75Copy full SHA for 7016f75
tests/unit_tests/test_async_subtensor.py
@@ -105,7 +105,10 @@ async def test_init_if_unknown_network_is_not_valid(mocker):
105
def test__str__return(subtensor):
106
"""Simply tests the result if printing subtensor instance."""
107
# Asserts
108
- assert str(subtensor) == "Network: test, Chain: wss://test.finney.opentensor.ai:443"
+ assert (
109
+ str(subtensor)
110
+ == "Network: finney, Chain: wss://entrypoint-finney.opentensor.ai:443"
111
+ )
112
113
114
@pytest.mark.asyncio
0 commit comments