summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tempest-pull/app/neo4j.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tempest-pull/app/neo4j.py b/tempest-pull/app/neo4j.py
index 3d71dd8..7f33600 100644
--- a/tempest-pull/app/neo4j.py
+++ b/tempest-pull/app/neo4j.py
@@ -80,7 +80,7 @@ class Neo4JDatabase(object):
if test_set:
print "adding tests"
for test in test_set:
- test_key = test["class"] + "___" + test["name"]
+ test_key = test["class"] + "::" + test["name"]
Test_node = graph.find_one("Test", "key", test_key)
if not Test_node:
print "creating new Test node: %s" % test["fullname"]