Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlog committed Jun 22, 2021
1 parent 9ee5d41 commit 28c1817
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@ export default ({ getService }: FtrProviderContext): void => {
query: { owner: ['securitySolutionFixture', 'observabilityFixture'] },
});

expect(res).to.eql([case1.id]);
const cases = getCaseIDsFromCases(res);
expect(cases).to.eql([case1.id]);
});
});
};

0 comments on commit 28c1817

Please sign in to comment.