Skip to content

Commit

Permalink
Make test less brittle when registry is changed. (#74554)
Browse files Browse the repository at this point in the history
  • Loading branch information
skh authored Aug 6, 2020
1 parent b71b9c2 commit ebe46c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function ({ getService }: FtrProviderContext) {
return response.body;
};
const listResponse = await fetchPackageList();
expect(listResponse.response.length).to.be(8);
expect(listResponse.response.length).not.to.be(0);
} else {
warnAndSkipTest(this, log);
}
Expand Down

0 comments on commit ebe46c0

Please sign in to comment.