File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,12 @@ import neo4j from '../../src/v1';
21
21
import sharedNeo4j from '../internal/shared-neo4j' ;
22
22
23
23
/**
24
- * The tests below are examples that get pulled into the Driver Manual using the tags inside the tests.
25
- *
26
- * DO NOT add tests to this file that are not for that exact purpose.
27
- * DO NOT modify these tests without ensuring they remain consistent with the equivalent examples in other drivers
28
- */
24
+ * The tests below are examples that get pulled into the Driver Manual using the tags inside the tests.
25
+ * Formatting of code here is important. Lines are rendered in manual and language guide web page as is.
26
+ *
27
+ * DO NOT add tests to this file that are not for that exact purpose.
28
+ * DO NOT modify these tests without ensuring they remain consistent with the equivalent examples in other drivers
29
+ */
29
30
describe ( 'examples' , ( ) => {
30
31
31
32
const neo4jV1 = neo4j ;
@@ -294,7 +295,10 @@ describe('examples', () => {
294
295
const session = driver . session ( ) ;
295
296
296
297
const personName = 'Alice' ;
297
- const resultPromise = session . run ( 'CREATE (a:Person {name: $name}) RETURN a' , { name : personName } ) ;
298
+ const resultPromise = session . run (
299
+ 'CREATE (a:Person {name: $name}) RETURN a' ,
300
+ { name : personName }
301
+ ) ;
298
302
299
303
resultPromise . then ( result => {
300
304
session . close ( ) ;
You can’t perform that action at this time.
0 commit comments