diff options
Diffstat (limited to 'test/py/tests/test_fit_hashes.py')
-rw-r--r-- | test/py/tests/test_fit_hashes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_fit_hashes.py b/test/py/tests/test_fit_hashes.py index 4891e77ca2d..7bc24a7c870 100644 --- a/test/py/tests/test_fit_hashes.py +++ b/test/py/tests/test_fit_hashes.py @@ -80,7 +80,7 @@ class ReadonlyFitImage(object): @pytest.mark.requiredtool('dtc') @pytest.mark.requiredtool('fdtget') @pytest.mark.requiredtool('fdtput') -def test_mkimage_hashes(u_boot_console): +def test_mkimage_hashes(ubman): """ Test that hashes generated by mkimage are correct. """ def assemble_fit_image(dest_fit, its, destdir): @@ -91,7 +91,7 @@ def test_mkimage_hashes(u_boot_console): dtb = dts.replace('.dts', '.dtb') util.run_and_log(cons, f'dtc {datadir}/{dts} -O dtb -o {tempdir}/{dtb}') - cons = u_boot_console + cons = ubman mkimage = cons.config.build_dir + '/tools/mkimage' datadir = cons.config.source_dir + '/test/py/tests/vboot/' tempdir = os.path.join(cons.config.result_dir, 'hashes') |