mirror of
https://xff.cz/git/u-boot/
synced 2025-11-01 02:45:39 +01: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user