diff mbox series

[1/2] selftest/reproducible: Move a comment to follow the line it concerns

Message ID 20250203234836.3635582-1-yoann.congal@smile.fr
State New
Headers show
Series [1/2] selftest/reproducible: Move a comment to follow the line it concerns | expand

Commit Message

Yoann Congal Feb. 3, 2025, 11:48 p.m. UTC
From: Yoann Congal <yoann.congal@smile.fr>

The code line was moved in
commit 5a9a5ad6a7be ("reproducibility: continue testing in case of build failure")

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
---
 meta/lib/oeqa/selftest/cases/reproducible.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index 3fb0e5ee5b..30eea2675e 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -275,8 +275,8 @@  class ReproducibleTests(OESelftestTestCase):
         self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT'))
         self.write_config(config)
         d = get_bb_vars(capture_vars)
-        # targets used to be called images
         try:
+            # targets used to be called images
             bitbake("--continue "+' '.join(getattr(self, 'images', self.targets)))
         except AssertionError as e:
             bitbake_failure_count += 1