summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2015-07-06 15:31:24 -0400
committerClark Laughlin <clark.laughlin@linaro.org>2015-07-06 15:31:24 -0400
commited26d1d95bc5252d83e78d07e5736e4fb2cda396 (patch)
tree0b88cd6a7a9d66eee29603ec91fd8ad18488bfc1
parentdc12d6b51d9d5df527a6eff06876746b80dec994 (diff)
tempest-pull: change class/test delimiter
-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"]