From 0d63c775a8b3d7750cc4adc606582da283fc72f6 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Mon, 5 Jan 2015 18:12:32 +0200 Subject: follow string ID type convention --- src/server-tests/neo4j_test_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server-tests/neo4j_test_util.py b/src/server-tests/neo4j_test_util.py index 6f49f17e..cf07f10f 100644 --- a/src/server-tests/neo4j_test_util.py +++ b/src/server-tests/neo4j_test_util.py @@ -22,7 +22,7 @@ class DBO_random_data_generation(DB_op): q_arr = ['with 0 as _', # TODO clean: foreach triggers SyntaxException: otherwise 'foreach (rid in range(0,%d)' % (lim_n - 1), '|', - 'create (:%s {id: rid, n_attr_0:toInt(%d * rand())}))' % (self.n_label, lim_n) + 'create (:%s {id: \'test-id_\' + toString(rid), n_attr_0:toInt(%d * rand())}))' % (self.n_label, lim_n) ] q = ' '.join(q_arr) -- cgit v1.3.1