]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa/sdk/python: fix version typo
authorRoss Burton <ross.burton@intel.com>
Fri, 7 Dec 2018 21:25:18 +0000 (21:25 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 8 Dec 2018 17:16:55 +0000 (17:16 +0000)
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/sdk/cases/python.py

index 8b871414033aeeeb7918625b9e45e0062bfc3864..2254867d45574e7947da7a1ac14ded6410bd8eab 100644 (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)