Skip to content

Commit

Permalink
tests/system: adapt to new API response
Browse files Browse the repository at this point in the history
In elastic/kibana#95146
the response structure for listing APM agent central
config changed. Update system tests to match.
  • Loading branch information
axw committed Mar 31, 2021
1 parent 141ee87 commit d548dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/kibana.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def list_agent_config(self):
}
)
assert resp.status_code == 200, resp.status_code
return resp.json()
return resp.json()['configurations']

def delete_agent_config(self, service, env=None):
data = {
Expand Down

0 comments on commit d548dff

Please sign in to comment.