]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
oeqa selftest context.py: whitespace fix
authorMikko Rapeli <mikko.rapeli@linaro.org>
Wed, 23 Aug 2023 06:10:21 +0000 (09:10 +0300)
committerSteve Sakoman <steve@sakoman.com>
Tue, 10 Oct 2023 15:14:28 +0000 (05:14 -1000)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
(cherry picked from commit 8aed3ca405cb3cc5d346eb8da8b3307d93f75d5b)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/lib/oeqa/selftest/context.py

index 0a7a9da72afe333bf8d5fc911e471c06a14d58e6..6cf1bef2129794ac69a18b8d9ec96edb957bdb8c 100644 (file)
@@ -216,14 +216,14 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
         machines = []
 
         bbpath = self.tc_kwargs['init']['td']['BBPATH'].split(':')
-    
+
         for path in bbpath:
             found_machines = glob.glob(os.path.join(path, 'conf', 'machine', '*.conf'))
             if found_machines:
                 for i in found_machines:
                     # eg: '/home/<user>/poky/meta-intel/conf/machine/intel-core2-32.conf'
                     machines.append(os.path.splitext(os.path.basename(i))[0])
-    
+
         return machines
 
     def _get_cases_paths(self, bbpath):