fix tests

This commit is contained in:
Maxim Lobanov 2021-03-09 11:36:53 +03:00
parent 87febe147a
commit 54adc8612c
2 changed files with 7 additions and 7 deletions

View file

@ -240,7 +240,7 @@ describe('normalizeVersion', () => {
it('normalizeVersion should throw an error for non semver', () => {
const version = '11g';
expect(DummyJavaBase.prototype.normalizeVersion.bind(null, version)).toThrowError(
`The string '${version}' is not valid SemVer notation for Java version. Please check README file for code snippets and more detailed information`
`The string '${version}' is not valid SemVer notation for a Java version. Please check README file for code snippets and more detailed information`
);
});
});