mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-03-14 22:26:58 +01:00
Fix lint
This commit is contained in:
parent
72902a03bd
commit
3794e54127
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ describe('pythonVersions', () => {
|
|||
['3.14.0rc1t', {version: '3.14.0-rc.1', freethreaded: true}]
|
||||
])('%s -> %s', (input, expected) => {
|
||||
const {version, freethreaded} = desugarVersion(input);
|
||||
let semanticVersionSpec = pythonVersionToSemantic(version, false);
|
||||
const semanticVersionSpec = pythonVersionToSemantic(version, false);
|
||||
expect({version: semanticVersionSpec, freethreaded}).toEqual(expected);
|
||||
});
|
||||
|
||||
|
@ -48,7 +48,7 @@ describe('pythonVersions', () => {
|
|||
['3.14.0rc1t', {version: '3.14.0-rc.1', freethreaded: true}]
|
||||
])('%s (allowPreReleases=true) -> %s', (input, expected) => {
|
||||
const {version, freethreaded} = desugarVersion(input);
|
||||
let semanticVersionSpec = pythonVersionToSemantic(version, true);
|
||||
const semanticVersionSpec = pythonVersionToSemantic(version, true);
|
||||
expect({version: semanticVersionSpec, freethreaded}).toEqual(expected);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue