summaryrefslogtreecommitdiff
path: root/test-cli/test/helpers/testsrv_db.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-cli/test/helpers/testsrv_db.py')
-rw-r--r--test-cli/test/helpers/testsrv_db.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-cli/test/helpers/testsrv_db.py b/test-cli/test/helpers/testsrv_db.py
index f08cb17..7ed02f3 100644
--- a/test-cli/test/helpers/testsrv_db.py
+++ b/test-cli/test/helpers/testsrv_db.py
@@ -119,9 +119,9 @@ class TestSrv_Database(object):
#print(r)
return None
- def open_testbatch(self, board_uuid):
+ def open_testbatch(self, board_uuid, station):
'''get the board test list'''
- sql = "SELECT isee.open_testbatch('{}')".format(board_uuid)
+ sql = "SELECT * FROM isee.open_testbatch('{}','{}')".format(board_uuid, station)
#print('>>>' + sql)
try:
res = str(self.__sqlObject.db_execute_query(sql)[0])