diff options
author | Stefan Kral <sk@typedivision.de> | 2020-03-11 17:36:49 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-12 12:46:09 +0000 |
commit | 5c8a1312fa74aebfb152a5d265a2b0c7af77498b (patch) | |
tree | 8e018305532cbcb01250830ab30922775be1385c /meta/lib/oeqa | |
parent | 4a315d597f5f4c6aba7174c69e5c3608f221b6fa (diff) | |
download | poky-5c8a1312fa74aebfb152a5d265a2b0c7af77498b.tar.gz |
oeqa/runtime/context.py: fix typo
(From OE-Core rev: bf959e6fd175d0841a1c042bf925c54200bea3d4)
Signed-off-by: Stefan Kral <sk@typedivision.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/runtime/context.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py index 2ecb1a8f01..101434a595 100644 --- a/meta/lib/oeqa/runtime/context.py +++ b/meta/lib/oeqa/runtime/context.py | |||
@@ -77,7 +77,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): | |||
77 | 77 | ||
78 | runtime_group.add_argument('--packages-manifest', action='store', | 78 | runtime_group.add_argument('--packages-manifest', action='store', |
79 | default=self.default_manifest, | 79 | default=self.default_manifest, |
80 | help="Package manifest of the image under testi, default: %s" \ | 80 | help="Package manifest of the image under test, default: %s" \ |
81 | % self.default_manifest) | 81 | % self.default_manifest) |
82 | 82 | ||
83 | runtime_group.add_argument('--extract-dir', action='store', | 83 | runtime_group.add_argument('--extract-dir', action='store', |
@@ -184,7 +184,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor): | |||
184 | except: | 184 | except: |
185 | obj = None | 185 | obj = None |
186 | return obj | 186 | return obj |
187 | 187 | ||
188 | @staticmethod | 188 | @staticmethod |
189 | def readPackagesManifest(manifest): | 189 | def readPackagesManifest(manifest): |
190 | if not manifest or not os.path.exists(manifest): | 190 | if not manifest or not os.path.exists(manifest): |