Skip to content

Commit

Permalink
is_agent_running requires an agent uuid.
Browse files Browse the repository at this point in the history
  • Loading branch information
craig8 committed Oct 24, 2024
1 parent 8db0712 commit 68284c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_platformwrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def test_install_agent_from_github(volttron_instance):
vi.stop_agent(agent_uuid=agent_uuid)
assert not vi.is_agent_running(agent_uuid)
vi.start_agent(agent_uuid)
assert vi.is_agent_running()
assert vi.is_agent_running(agent_uuid)
current_pid = vi.agent_pid(agent_uuid)
vi.restart_agent(agent_uuid)
new_pid = vi.agent_pid(agent_uuid)
Expand Down

0 comments on commit 68284c6

Please sign in to comment.