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