From 547d55621499a26055d59ce2f84516693fffb7aa Mon Sep 17 00:00:00 2001 From: LV-426 Date: Sun, 17 May 2015 18:09:04 +0300 Subject: DBO_raw_query_set - [!] use discouraged, work around queries the parser can't handle --- src/server-tests/test_rhizi_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server-tests/test_rhizi_api.py') 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: -- cgit v1.3.1