bitbake: lib/bb/tests/codeparser: update expand syntax in comment

bb.data.expand(x, d) is deprecated API

(Bitbake rev: 71185c19205a77d0511fc00baf95a5433e7106d6)

Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Joshua Lock 2017-03-17 15:54:39 +00:00 committed by Richard Purdie
parent 9b6b47c09d
commit ad1d65ca32
1 changed files with 2 additions and 2 deletions

View File

@ -285,8 +285,8 @@ def a():
test(d)
bb.data.expand(d.getVar("something", False), d)
bb.data.expand("${inexpand} somethingelse", d)
d.expand(d.getVar("something", False))
d.expand("${inexpand} somethingelse")
d.getVar(a(), False)
"""