summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-20 13:38:47 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-21 21:00:26 +0100
commitda812d938fd79e2cc7bdf355ccf5b0f9ead684c4 (patch)
tree174a9b6868a6493a51b240e78bba1539491b2186
parente8b176de448dc387c7a578c92b52aef28591038f (diff)
downloadbitbake-da812d938fd79e2cc7bdf355ccf5b0f9ead684c4.tar.gz
tests/parse: Fix one test overwriting another
Fix an issue where two tests have the same name with one overwriting the other. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/tests/parse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/tests/parse.py b/lib/bb/tests/parse.py
index 4d17f82ed..2898f9bb1 100644
--- a/lib/bb/tests/parse.py
+++ b/lib/bb/tests/parse.py
@@ -119,7 +119,7 @@ EXTRA_OECONF:class-target = "b"
EXTRA_OECONF:append = " c"
"""
- def test_parse_overrides(self):
+ def test_parse_overrides2(self):
f = self.parsehelper(self.overridetest2)
d = bb.parse.handle(f.name, self.d)['']
d.appendVar("EXTRA_OECONF", " d")