diff options
Diffstat (limited to 'test/py/tests/test_lsblk.py')
-rw-r--r-- | test/py/tests/test_lsblk.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/py/tests/test_lsblk.py b/test/py/tests/test_lsblk.py index a719a48e6ee..babd4f9528b 100644 --- a/test/py/tests/test_lsblk.py +++ b/test/py/tests/test_lsblk.py @@ -7,8 +7,8 @@ import pytest @pytest.mark.boardspec('sandbox') @pytest.mark.buildconfigspec('blk') @pytest.mark.buildconfigspec('cmd_lsblk') -def test_lsblk(u_boot_console): +def test_lsblk(ubman): """Test that `lsblk` prints a result which includes `host`.""" - output = u_boot_console.run_command('lsblk') + output = ubman.run_command('lsblk') assert "Block Driver" in output assert "sandbox_host_blk" in output |