test(web): unpin HERMES_HONCHO_HOST in profile-param memory config test

The suite-wide conftest now pins HERMES_HONCHO_HOST=hermes (597615ade, after
this branch was written), which preempts profile-driven host resolution and
made the salvaged test write to the 'hermes' host key instead of
'hermes_worker'. Drop the override inside the test like the other custom
host-resolution tests do.
This commit is contained in:
teknium1 2026-07-18 15:26:50 -07:00
parent c84c0c5277
commit 7ced2ee394
No known key found for this signature in database

View file

@ -1235,6 +1235,9 @@ class TestWebServerEndpoints:
# A ?profile= save must land in that profile's config, not the serving
# process's — same contract as the skills/toolsets endpoints.
monkeypatch.setenv("HOME", str(tmp_path))
# The suite pins HERMES_HONCHO_HOST=hermes; this test exercises
# profile-driven host resolution, so drop the override explicitly.
monkeypatch.delenv("HERMES_HONCHO_HOST", raising=False)
from hermes_constants import get_hermes_home
from hermes_cli.profiles import get_profile_dir