Skip to content

Commit

Permalink
fix type error in 7.17
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Jan 19, 2022
1 parent 4d3ba6e commit 747b1ab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ export class FunctionalTestRunner {
);
}

if (!this.esVersion.eql(esInfo.version.number)) {
if (!this.esVersion.eql(esInfo.body.version.number)) {
throw new Error(
`ES reports a version number "${
esInfo.version.number
esInfo.body.version.number
}" which doesn't match supplied es version "${this.esVersion.toString()}"`
);
}
Expand Down

0 comments on commit 747b1ab

Please sign in to comment.