Skip to content

Commit

Permalink
drops redundant semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoscaz authored and rubensworks committed Feb 17, 2022
1 parent 2fe5b33 commit d27dff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rdf-js-query-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async function test_stringsparqlqueryable() {
}

async function test_algebrasparqlqueryable() {
interface AlgebraType { mock: 'algebra' };
interface AlgebraType { mock: 'algebra' }
const engine: AlgebraSparqlQueryable<AlgebraType, SparqlResultSupport> = <any> {};

const bindings: ResultStream<Bindings> = await engine.queryBindings({ mock: 'algebra' });
Expand All @@ -104,7 +104,7 @@ async function test_stringsparqlqueryable_partial() {
}

async function test_algebrasparqlqueryable_partial() {
interface AlgebraType { mock: 'algebra' };
interface AlgebraType { mock: 'algebra' }
const engine: AlgebraSparqlQueryable<AlgebraType, BindingsResultSupport & QuadsResultSupport> = <any> {};

const bindings: ResultStream<Bindings> = await engine.queryBindings({ mock: 'algebra' });
Expand Down

0 comments on commit d27dff6

Please sign in to comment.