diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-05-17 18:09:04 +0300 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-05-17 18:09:04 +0300 |
| commit | 547d55621499a26055d59ce2f84516693fffb7aa (patch) | |
| tree | fc1173ee4d0ac6e10c9d4bac6770fefe56b4bf36 /src/server-tests/test_rhizi_api.py | |
| parent | ba36c0820bc023fe548ec817cb434bc387a1baa2 (diff) | |
DBO_raw_query_set - [!] use discouraged, work around queries the parser can't handle
Diffstat (limited to 'src/server-tests/test_rhizi_api.py')
| -rw-r--r-- | src/server-tests/test_rhizi_api.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server-tests/test_rhizi_api.py b/src/server-tests/test_rhizi_api.py index 67a67220..2924f4e8 100644 --- a/src/server-tests/test_rhizi_api.py +++ b/src/server-tests/test_rhizi_api.py @@ -5,7 +5,7 @@ from werkzeug.test import Client from werkzeug.test import EnvironBuilder import db_controller as dbc -from db_op import DBO_cypher_query +from db_op import DBO_raw_query_set import rz_api from rz_config import RZ_Config from test_util__pydev import debug__pydev_pd_arg @@ -49,7 +49,7 @@ class TestRhiziAPI(unittest.TestCase): """ id_set = ['skill_00'] q = ['create (s:Skill {id: \'skill_00\'} )'] - op = DBO_cypher_query(q) + op = DBO_raw_query_set(q) self.db_ctl.exec_op(op) with rz_api.webapp.test_client() as c: |
