@@ -681,17 +681,16 @@ describe('Rule optimize-traversals', () => {
681
681
// p.vertices[*].label ALL == true
682
682
// . That is, inline expressions were ignored.
683
683
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' ) ] ) ;
687
687
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 } ) ;
691
691
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' , { } ) ;
695
694
696
695
const query = `
697
696
FOR v, e, p IN 1..10 OUTBOUND 'V/1' GRAPH '${ graphName } '
0 commit comments