test/py/test_mmc: wrap multi-argument printf-style strings
authorBryan Brattlof <bb@ti.com>
Thu, 19 Jun 2025 11:45:05 +0000 (06:45 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 27 Jun 2025 16:02:19 +0000 (10:02 -0600)
commitb14b3de65282e82b1832d53e3ee04f693c6c39e7
treebda8e145bc4cbc83f13c1e51606c6bcf3c807bcf
parentb77066d73261855af406422fbbe28a5d527f4dbf
test/py/test_mmc: wrap multi-argument printf-style strings

Newer versions of python will emit a TypeError about not enough
arguments for a format string:

    FAILED ub/test/py/tests/test_mmc.py::test_mmc_dev - TypeError: not enough arguments for format string
    FAILED ub/test/py/tests/test_mmc.py::test_mmcinfo - TypeError: not enough arguments for format string
    FAILED ub/test/py/tests/test_mmc.py::test_mmc_info - TypeError: not enough arguments for format string
    FAILED ub/test/py/tests/test_mmc.py::test_mmc_rescan - TypeError: not enough arguments for format string
    FAILED ub/test/py/tests/test_mmc.py::test_mmc_part - TypeError: not enough arguments for format string

Add parentheses around all multi argument format strings so all
arguments will be passed to the format string

Signed-off-by: Bryan Brattlof <bb@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
test/py/tests/test_mmc.py