
Use the helper here, for consistency. Signed-off-by: Simon Glass <sjg@chromium.org> --- test/py/tests/test_ut.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/py/tests/test_ut.py b/test/py/tests/test_ut.py index 7e2f224bac6..54813579db2 100644 --- a/test/py/tests/test_ut.py +++ b/test/py/tests/test_ut.py @@ -581,8 +581,8 @@ def test_ut_dm_init(ubman): utils.run_and_log( ubman, f'sfdisk {fn}', stdin=b'type=83') - fs_helper.mk_fs(ubman.config, 'ext2', 0x200000, '2MB', None) - fs_helper.mk_fs(ubman.config, 'fat32', 0x100000, '1MB', None) + FsHelper(ubman.config, 'ext2', 2, 'mmc').mk_fs() + FsHelper(ubman.config, 'fat32', 1, 'mmc').mk_fs() mmc_dev = 6 fn = os.path.join(ubman.config.source_dir, f'mmc{mmc_dev}.img') -- 2.43.0