summaryrefslogtreecommitdiff
path: root/src/local/domain/cri/test_domain__CRI.py
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-02-24 01:35:35 +0200
committerLV-426 <lv-426@taproot.org.il>2015-02-24 01:35:35 +0200
commit11fca26a64d09a50fb406280c71ee634de036a9f (patch)
tree772fa096daf3a49f0ea312f0e2396fb16d4220d3 /src/local/domain/cri/test_domain__CRI.py
parent9ad4624c8d479106081d95c571c44a6d4d8af943 (diff)
domain_cri.py: fixing link proficiency level attr, cvs export
Diffstat (limited to 'src/local/domain/cri/test_domain__CRI.py')
-rw-r--r--src/local/domain/cri/test_domain__CRI.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/local/domain/cri/test_domain__CRI.py b/src/local/domain/cri/test_domain__CRI.py
index 418c8aef..54131bbd 100644
--- a/src/local/domain/cri/test_domain__CRI.py
+++ b/src/local/domain/cri/test_domain__CRI.py
@@ -32,7 +32,7 @@ class Test_Domain_CRI(unittest.TestCase):
q_arr = ['match (n: Person)',
'with n',
- 'match (n)-[r:Knows]->(m:Skill)',
+ 'match (n)-[r:Novice|Intermediate|Expert]->(m:Skill)', # [!] expect link type to be proficiency level
'return n.name, collect({skill_name: m.name, skill_level: r.proficiency})'
]
op = DBO_cypher_query(q_arr)