summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/testimage.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/testimage.bbclass b/meta/classes-recipe/testimage.bbclass
index 5cc408b0c4..df22bb2344 100644
--- a/meta/classes-recipe/testimage.bbclass
+++ b/meta/classes-recipe/testimage.bbclass
@@ -236,7 +236,7 @@ def testimage_main(d):
236 with open(tdname, "r") as f: 236 with open(tdname, "r") as f:
237 td = json.load(f) 237 td = json.load(f)
238 except FileNotFoundError as err: 238 except FileNotFoundError as err:
239 bb.fatal('File %s not found (%s).\nHave you built the image with INHERIT += "testimage" in the conf/local.conf?' % (tdname, err)) 239 bb.fatal('File %s not found (%s).\nHave you built the image with IMAGE_CLASSES += "testimage" in the conf/local.conf?' % (tdname, err))
240 240
241 # Some variables need to be updates (mostly paths) with the 241 # Some variables need to be updates (mostly paths) with the
242 # ones of the current environment because some tests require them. 242 # ones of the current environment because some tests require them.