1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 17:19:20 +00:00

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>
This commit is contained in:
Ross Burton
2018-12-07 21:25:18 +00:00
committed by Richard Purdie
parent 7c34751a0d
commit aa8a9a05c2
+1 -1
View File
@@ -7,7 +7,7 @@ class Python2Test(OESDKTestCase):
self.tc.hasHostPackage("python-core-native")):
raise unittest.SkipTest("No python package in the SDK")
def test_python3(self):
def test_python2(self):
try:
cmd = "python -c \"import codecs; print(codecs.encode('Uryyb, jbeyq', 'rot13'))\""
output = self._run(cmd)