Skip to content

Commit ff7fc22

Browse files
authored
Test "*" + port in addresses unit test
1 parent 4db53fa commit ff7fc22

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

parsl/tests/unit/test_address.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
("::ffff:127.0.0.1", None, "tcp://::ffff:127.0.0.1"),
1414
("::ffff:127.0.0.1", None, "tcp://::ffff:127.0.0.1"),
1515
("*", None, "tcp://*"),
16+
("*", 55001, "tcp://*:55001")
1617
])
1718
def test_tcp_url(address, port, expected):
1819
"""Confirm valid address generation"""

0 commit comments

Comments
 (0)