]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.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)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 7 Sep 2023 13:36:27 +0000 (14:36 +0100)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
meta/lib/oeqa/selftest/context.py

index f2a5ba792f6346d61a437bb04d80ce1e7767d800..4b332457588e94b6f69dbb8a170abe38dba6b89b 100644 (file)
@@ -226,14 +226,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):