8000 fixed jslint · strogo/arangodb@700dcbb · GitHub
[go: up one dir, main page]

Skip to content

Commit 700dcbb

Browse files
committed
fixed jslint
1 parent ed41d8e commit 700dcbb

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

js/server/tests/aql/aql-optimizer-rule-optimize-traversals-spec.js

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -681,17 +681,16 @@ describe('Rule optimize-traversals', () => {
681681
// p.vertices[*].label ALL == true
682682
// . That is, inline expressions were ignored.
683683
it('inline expressions should not be changed', () => {
684-
{ // create data
685-
graph = graphModule._create(graphName, [
686-
graphModule._relation('E', 'V', 'V')]);
684+
// create data
685+
graph = graphModule._create(graphName, [
686+
graphModule._relation('E', 'V', 'V')]);
687687

688-
graph.V.save({_key: '1', label: false});
689-
graph.V.save({_key: '2', label: true});
690-
graph.V.save({_key: '3', label: false});
688+
graph.V.save({_key: '1', label: false});
689+
graph.V.save({_key: '2', label: true});
690+
graph.V.save({_key: '3', label: false});
691691

692-
graph.E.save('V/1', 'V/2', {});
693-
graph.E.save('V/1', 'V/3', {});
694-
}
692+
graph.E.save('V/1', 'V/2', {});
693+
graph.E.save('V/1', 'V/3', {});
695694

696695
const query = `
697696
FOR v, e, p IN 1..10 OUTBOUND 'V/1' GRAPH '${graphName}'

0 commit comments

Comments
 (0)
0