diff options
Diffstat (limited to 'tests/quick/se/01.hello-2T-smt/test.py')
-rw-r--r-- | tests/quick/se/01.hello-2T-smt/test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/quick/se/01.hello-2T-smt/test.py b/tests/quick/se/01.hello-2T-smt/test.py index 6f8b18361..b6c3c71a2 100644 --- a/tests/quick/se/01.hello-2T-smt/test.py +++ b/tests/quick/se/01.hello-2T-smt/test.py @@ -26,7 +26,7 @@ # # Authors: Korey Sewell -process1 = LiveProcess(cmd = 'hello', executable = binpath('hello')) -process2 = LiveProcess(cmd = 'hello', executable = binpath('hello')) +process1 = Process(cmd = 'hello', executable = binpath('hello')) +process2 = Process(cmd = 'hello', executable = binpath('hello')) root.system.cpu[0].workload = [process1, process2] |