summaryrefslogtreecommitdiff
path: root/test-cli/test_main.py
diff options
context:
space:
mode:
Diffstat (limited to 'test-cli/test_main.py')
-rw-r--r--test-cli/test_main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-cli/test_main.py b/test-cli/test_main.py
index a44b7d1..6680082 100644
--- a/test-cli/test_main.py
+++ b/test-cli/test_main.py
@@ -61,7 +61,7 @@ def create_board():
processor_id = genDieid(globalVar.g_mid)
print(globalVar.g_mid)
print(processor_id)
- s = globalVar.g_uuid = psdbObj.create_board(processor_id, model_id, variant, bmac = None)
+ globalVar.g_uuid = psdbObj.create_board(processor_id, model_id, variant, bmac = None)
def createvarlist(testvars):
varlist = {}
@@ -81,7 +81,7 @@ def testsuite():
command = "suite.addTest({}('{}','execute', varlist))".format(testfunc, testdefname)
exec(command)
- globalVar.testid_ctl=psdbObj.open_testbatch(globalVar.g_uuid)
+ globalVar.testid_ctl=psdbObj.open_testbatch(globalVar.g_uuid, globalVar.station)
return suite