mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 12:46:14 +02:00
binman: Fix up a format string in AssertInList()
Add the missing 's' to the required '%s' here. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e16b7b6c49
commit
1fc62de19f
@ -395,7 +395,7 @@ class TestFunctional(unittest.TestCase):
|
||||
for grep in grep_list:
|
||||
if grep in target:
|
||||
return
|
||||
self.fail("Error: '%' not found in '%s'" % (grep_list, target))
|
||||
self.fail("Error: '%s' not found in '%s'" % (grep_list, target))
|
||||
|
||||
def CheckNoGaps(self, entries):
|
||||
"""Check that all entries fit together without gaps
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user