Skip to content

Commit bd52816

Browse files
author
Roman
committed
fix test
1 parent d8b7d70 commit bd52816

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/unit_tests/test_subtensor.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,10 @@ def mock_add_argument(*args, **kwargs):
274274
"archive",
275275
settings.ARCHIVE_ENTRYPOINT,
276276
),
277-
("127.0.0.1", "local", settings.LOCAL_ENTRYPOINT),
278-
("localhost", "local", settings.LOCAL_ENTRYPOINT),
277+
("127.0.0.1", "local", "127.0.0.1"),
278+
("localhost", "local", "localhost"),
279+
("ws://127.0.0.1:9945", "local", "ws://127.0.0.1:9945"),
280+
("ws://localhost:9945", "local", "ws://localhost:9945"),
279281
# Edge cases
280282
(None, None, None),
281283
("unknown", "unknown", "unknown"),

0 commit comments

Comments
 (0)