Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: e2e test ws binding to ipv6 #593

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/e2e/test_match_multiple_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def test_match_multiple_rules():
and send the event messages to a websocket server
"""
# variables
host = "localhost"
host = "127.0.0.1"
endpoint = "/api/ws2"
proc_id = "42"
port = 31415
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/test_non_alpha_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def test_non_alpha_numeric_keys():
and send the event messages to a websocket server
"""
# variables
host = "localhost"
host = "127.0.0.1"
endpoint = "/api/ws2"
proc_id = "42"
port = 31415
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/test_run_module_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async def test_run_module_output():
run_module and then used in a condition
"""
# variables
host = "localhost"
host = "127.0.0.1"
endpoint = "/api/ws2"
proc_id = "42"
port = 31415
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/test_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async def test_websocket_messages():
send event messages to a websocket server
"""
# variables
host = "localhost"
host = "127.0.0.1"
endpoint = "/api/ws2"
proc_id = "42"
port = 31415
Expand Down