Skip to content

Commit

Permalink
fixes typo, server host maintained for connect call (Bears-R-Us#3307)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-neth authored Jun 10, 2024
1 parent 25d4cd8 commit 6268bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PROTO_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ def startup_teardown():
raise EnvironmentError("pytest and pytest-env must be installed")
if TestRunningMode.CLASS_SERVER == test_running_mode:
try:
server, _, _ = start_arkouda_server(numlocales=pytest.nl, port=pytest.port)
pytest.server, _, _ = start_arkouda_server(numlocales=pytest.nl, port=pytest.port)
print(
"Started arkouda_server in TEST_CLASS mode with "
"host: {} port: {} locales: {}".format(server, pytest.port, pytest.nl)
"host: {} port: {} locales: {}".format(pytest.server, pytest.port, pytest.nl)
)
except Exception as e:
raise RuntimeError(
Expand Down

0 comments on commit 6268bdc

Please sign in to comment.