Skip to content

Commit

Permalink
Fix more test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Mar 24, 2021
1 parent 8c447f1 commit 4d6722c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function createGetAlertInstanceSummaryTests({ getService }: FtrPr
);

expect(response.status).to.eql(200);
expect(response.body.instances).to.eql({
expect(response.body.alerts).to.eql({
'1': {
status: 'OK',
muted: true,
Expand Down Expand Up @@ -222,7 +222,7 @@ export default function createGetAlertInstanceSummaryTests({ getService }: FtrPr
`${getUrlPrefix(Spaces.space1.id)}/api/alerting/rule/${createdAlert.id}/_alert_summary`
);

const actualInstances = response.body.instances;
const actualInstances = response.body.alerts;
const expectedInstances = {
instanceA: {
status: 'Active',
Expand Down

0 comments on commit 4d6722c

Please sign in to comment.