diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/vnc.py')
-rw-r--r-- | meta/lib/oeqa/runtime/vnc.py | 2 |
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 * | |||
3 | import re | 3 | import re |
4 | 4 | ||
5 | def setUpModule(): | 5 | def setUpModule(): |
6 | skipModuleUnless(oeRuntimeTest.tc.target.run('which x11vnc')[0] == 0, "No x11vnc in image") | 6 | skipModuleUnless(oeRuntimeTest.hasPackage('x11vnc'), "No x11vnc package in image") |
7 | 7 | ||
8 | class VNCTest(oeRuntimeTest): | 8 | class VNCTest(oeRuntimeTest): |
9 | 9 | ||