diff options
-rw-r--r-- | bitbake/lib/bb/tests/codeparser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/tests/codeparser.py b/bitbake/lib/bb/tests/codeparser.py index a681841df3..a45a582dd9 100644 --- a/bitbake/lib/bb/tests/codeparser.py +++ b/bitbake/lib/bb/tests/codeparser.py | |||
@@ -285,8 +285,8 @@ def a(): | |||
285 | 285 | ||
286 | test(d) | 286 | test(d) |
287 | 287 | ||
288 | bb.data.expand(d.getVar("something", False), d) | 288 | d.expand(d.getVar("something", False)) |
289 | bb.data.expand("${inexpand} somethingelse", d) | 289 | d.expand("${inexpand} somethingelse") |
290 | d.getVar(a(), False) | 290 | d.getVar(a(), False) |
291 | """ | 291 | """ |
292 | 292 | ||