diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/devtool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index 713f2c5d63..71d205c73f 100644 --- a/meta/lib/oeqa/selftest/devtool.py +++ b/meta/lib/oeqa/selftest/devtool.py | |||
@@ -44,7 +44,7 @@ class DevtoolBase(oeSelfTest): | |||
44 | if var and var in checkvars: | 44 | if var and var in checkvars: |
45 | needvalue = checkvars.pop(var) | 45 | needvalue = checkvars.pop(var) |
46 | if needvalue is None: | 46 | if needvalue is None: |
47 | self.fail('Variable %s should not appear in recipe') | 47 | self.fail('Variable %s should not appear in recipe, but value is being set to "%s"' % (var, value)) |
48 | if isinstance(needvalue, set): | 48 | if isinstance(needvalue, set): |
49 | if var == 'LICENSE': | 49 | if var == 'LICENSE': |
50 | value = set(value.split(' & ')) | 50 | value = set(value.split(' & ')) |