aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/vnc.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/runtime/vnc.py')
-rw-r--r--meta/lib/oeqa/runtime/vnc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/vnc.py b/meta/lib/oeqa/runtime/vnc.py
index 9476184080..ce111793b8 100644
--- a/meta/lib/oeqa/runtime/vnc.py
+++ b/meta/lib/oeqa/runtime/vnc.py
@@ -3,7 +3,7 @@ from oeqa.utils.decorators import *
import re
def setUpModule():
- skipModuleUnless(oeRuntimeTest.tc.target.run('which x11vnc')[0] == 0, "No x11vnc in image")
+ skipModuleUnless(oeRuntimeTest.hasPackage('x11vnc'), "No x11vnc package in image")
class VNCTest(oeRuntimeTest):