Update unit test

This commit is contained in:
IvanZosimov 2023-04-06 16:46:08 +02:00
parent d88ee5c3dc
commit dc7011a84a

View file

@ -247,7 +247,7 @@ describe('convertVersionToSemver', () => {
['12', '12'], ['12', '12'],
['12.0', '12.0'], ['12.0', '12.0'],
['12.0.2', '12.0.2'], ['12.0.2', '12.0.2'],
['12.0.2+1', '12.0.2+1'], ['12.0.2.1', '12.0.2+1'],
['12.0.2.1.0', '12.0.2+1.0'] ['12.0.2.1.0', '12.0.2+1.0']
])('%s -> %s', (input: string, expected: string) => { ])('%s -> %s', (input: string, expected: string) => {
const distribution = new CorrettoDistribution({ const distribution = new CorrettoDistribution({