Skip to content

Commit

Permalink
Update agent env vars in resubscription test
Browse files Browse the repository at this point in the history
  • Loading branch information
kmazurek committed Aug 16, 2021
1 parent 42030a7 commit c5842c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/goth_tests/test_resubscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ async def test_demand_resubscription(log_dir: Path, goth_config_path: Path, monk
async with runner(goth_config.containers):

requestor = runner.get_probes(probe_type=RequestorProbe)[0]
env = {**os.environ}
requestor.set_agent_env_vars(env)
env = requestor.get_agent_env_vars()
env.update(os.environ)

# Setup the environment for the requestor
for key, val in env.items():
Expand Down

0 comments on commit c5842c9

Please sign in to comment.