summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/context.py')
-rw-r--r--meta/lib/oeqa/runtime/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py
index 273412d151..db0482d68d 100644
--- a/meta/lib/oeqa/runtime/context.py
+++ b/meta/lib/oeqa/runtime/context.py
@@ -98,7 +98,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor):
98 if target_type == 'simpleremote': 98 if target_type == 'simpleremote':
99 target = OESSHTarget(logger, target_ip, server_ip, **kwargs) 99 target = OESSHTarget(logger, target_ip, server_ip, **kwargs)
100 elif target_type == 'qemu': 100 elif target_type == 'qemu':
101 target = OEQemuTarget(logger, target_ip, server_ip, **kwargs) 101 target = OEQemuTarget(logger, server_ip, **kwargs)
102 else: 102 else:
103 # XXX: This code uses the old naming convention for controllers and 103 # XXX: This code uses the old naming convention for controllers and
104 # targets, the idea it is to leave just targets as the controller 104 # targets, the idea it is to leave just targets as the controller