refactor: Enable style/indent-binary-ops rule

This commit is contained in:
Joachim Van Herwegen
2024-03-12 16:24:21 +01:00
parent 73fbe80cff
commit 331f83d659
11 changed files with 27 additions and 21 deletions

View File

@@ -134,7 +134,7 @@ describe('A SparqlUpdatePatcher', (): void => {
it('handles composite INSERT/DELETE updates.', async(): Promise<void> => {
const query = 'INSERT DATA { :s1 :p1 :o1 . :s2 :p2 :o2 };' +
'DELETE WHERE { :s1 :p1 :o1 . :startS1 :startP1 :startO1 }';
'DELETE WHERE { :s1 :p1 :o1 . :startS1 :startP1 :startO1 }';
input.patch = getPatch(query);
const result = await patcher.handle(input);
expect(result.dataset).toBeRdfIsomorphic([
@@ -153,7 +153,7 @@ describe('A SparqlUpdatePatcher', (): void => {
it('handles composite DELETE/INSERT updates.', async(): Promise<void> => {
const query = 'DELETE DATA { :s1 :p1 :o1 . :startS1 :startP1 :startO1 } ;' +
'INSERT DATA { :s1 :p1 :o1 . :s2 :p2 :o2 }';
'INSERT DATA { :s1 :p1 :o1 . :s2 :p2 :o2 }';
input.patch = getPatch(query);
const result = await patcher.handle(input);
expect(result.dataset).toBeRdfIsomorphic([