diff options
Diffstat (limited to 'test-cli/test')
-rw-r--r-- | test-cli/test/helpers/testsrv_db.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test-cli/test/helpers/testsrv_db.py b/test-cli/test/helpers/testsrv_db.py index a6a5545..27024ce 100644 --- a/test-cli/test/helpers/testsrv_db.py +++ b/test-cli/test/helpers/testsrv_db.py @@ -101,8 +101,8 @@ class TestSrv_Database(object): # print(r) return None - def get_board_variables(self, board_uuid): - sql = "SELECT * FROM isee.f_get_boardvariables('{}')".format(board_uuid) + def get_task_variables_list(self, board_uuid): + sql = "SELECT * FROM isee.f_get_task_variables_list('{}')".format(board_uuid) # print('>>>' + sql) try: res = self.__sqlObject.db_execute_query(sql) @@ -125,8 +125,8 @@ class TestSrv_Database(object): # print(r) return None - def create_process(self, testid_ctl): - sql = "SELECT * FROM isee.f_create_process({})".format(testid_ctl) + def open_task(self, uuid): + sql = "SELECT * FROM isee.f_open_task('{}')".format(uuid) # print('>>>' + sql) try: res = self.__sqlObject.db_execute_query(sql) |