diff options
author | Ross Burton <ross.burton@intel.com> | 2018-12-07 21:25:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-12-08 17:17:01 +0000 |
commit | aa8a9a05c2f50cb9c086bc0ca76a39d4cf40ed75 (patch) | |
tree | 88d9508658f3ecbc4a4d7db800e7d073312830c7 /meta/lib | |
parent | 7c34751a0d5a039aba22d933d9252b0c24cb3568 (diff) | |
download | poky-aa8a9a05c2f50cb9c086bc0ca76a39d4cf40ed75.tar.gz |
oeqa/sdk/python: fix version typo
(From OE-Core rev: 581b43d7b3566624e6b17d516755d8e7a5142ebf)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/sdk/cases/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/cases/python.py b/meta/lib/oeqa/sdk/cases/python.py index 8b87141403..2254867d45 100644 --- a/meta/lib/oeqa/sdk/cases/python.py +++ b/meta/lib/oeqa/sdk/cases/python.py | |||
@@ -7,7 +7,7 @@ class Python2Test(OESDKTestCase): | |||
7 | self.tc.hasHostPackage("python-core-native")): | 7 | self.tc.hasHostPackage("python-core-native")): |
8 | raise unittest.SkipTest("No python package in the SDK") | 8 | raise unittest.SkipTest("No python package in the SDK") |
9 | 9 | ||
10 | def test_python3(self): | 10 | def test_python2(self): |
11 | try: | 11 | try: |
12 | cmd = "python -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\"" | 12 | cmd = "python -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\"" |
13 | output = self._run(cmd) | 13 | output = self._run(cmd) |