Skip to content

Commit

Permalink
chore: use const instead of let
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Oct 18, 2023
1 parent e5cce27 commit 1a6ce19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ describe('e2e tests on the test suite runner', () => {

it(`should run correctly on [${spec}]`, async () => {
config.specification = spec
let result = await runner.runManifest('http://w3c.github.io/rdf-tests/sparql/sparql11/manifest-all.ttl', queryEngine(new QueryEngine()), config);
const result = await runner.runManifest('http://w3c.github.io/rdf-tests/sparql/sparql11/manifest-all.ttl', queryEngine(new QueryEngine()), config);

// Run assertions
expect(console.log).not.toHaveBeenCalled();
Expand Down

0 comments on commit 1a6ce19

Please sign in to comment.