Skip to content

Commit

Permalink
tests: appease the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdanp committed Dec 11, 2023
1 parent 0331ec7 commit cb347ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/common.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('selectSnapshotSite', () => {
describe('lookupStableVersion', () => {
it('gets the current stable version from racket-lang.org', async () => {
const version = common.parseVersion(await common.lookupStableVersion());
expect(version).toBeGreaterThan(common.parseVersion("7.8") as number);
expect(version).toBeGreaterThan(common.parseVersion('7.8') as number);
});
});

Expand Down

0 comments on commit cb347ba

Please sign in to comment.