Skip to content

Commit d27dff6

Browse files
jacoscazrubensworks
authored andcommitted
drops redundant semicolons
1 parent 2fe5b33 commit d27dff6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rdf-js-query-tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async function test_stringsparqlqueryable() {
8080
}
8181

8282
async function test_algebrasparqlqueryable() {
83-
interface AlgebraType { mock: 'algebra' };
83+
interface AlgebraType { mock: 'algebra' }
8484
const engine: AlgebraSparqlQueryable<AlgebraType, SparqlResultSupport> = <any> {};
8585

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

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

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

0 commit comments

Comments
 (0)