summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-10 08:05:27 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-12 13:41:35 +0100
commit38842a8150f44f5d31d9bd2b0b6ec0502acc971d (patch)
tree1974364933c72d041c838cdcfdc7fa8c267ec9a5
parent69d3b86449be23b07f794e302f6e18f3a2c46424 (diff)
downloadbitbake-38842a8150f44f5d31d9bd2b0b6ec0502acc971d.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> (cherry picked from commit da812d938fd79e2cc7bdf355ccf5b0f9ead684c4) Signed-off-by: Steve Sakoman <steve@sakoman.com> 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")