diff --git a/script/tests/tests/PS Tests/test without ioc/test without ioc.py b/script/tests/tests/PS Tests/test without ioc/test without ioc.py index bd89622..af7f8a8 100644 --- a/script/tests/tests/PS Tests/test without ioc/test without ioc.py +++ b/script/tests/tests/PS Tests/test without ioc/test without ioc.py @@ -4,11 +4,14 @@ # testing environment setup (if script is launched directly without Testinglist) is_panel = get_exec_pars().source != CommandSource.ui +test = "" +DEVICE = "" +parameters = "" if not is_panel: # set up params for testing - testName = "test without ioc" + test = "test without ioc" DEVICE = "no-device" - params = "{'howManySamples': {'description': 'How many samples are plotted', 'value': '50'}, 'delayBetweenSampleS': {'description': 'delay [s] between two samples', 'value': '0.05'}, 'repeatTimes': {'description': 'how many times the test is repeated', 'value': '3'}}" + parameters = "{'howManySamples': {'description': 'How many samples are plotted', 'value': '50'}, 'delayBetweenSampleS': {'description': 'delay [s] between two samples', 'value': '0.05'}, 'repeatTimes': {'description': 'how many times the test is repeated', 'value': '3'}}" startTest(testName, DEVICE, params) pass