Skip to content

Commit

Permalink
fix: get_port test
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Nov 19, 2024
1 parent 0e7fa22 commit 8dc0d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ def test_get_ip(monkeypatch, ip, ip_env):
"port,port_envvar,start_instance,port_busy,result",
(
[None, None, True, False, 50052], # Standard case
[None, None, True, True, 50055], # Busy port case, not sure why it is not 50054
[None, None, True, True, 50054],
[None, 50053, True, True, 50053],
[None, 50053, False, False, 50053],
[50054, 50053, True, False, 50054],
Expand Down

0 comments on commit 8dc0d33

Please sign in to comment.