diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-12 12:50:57 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-04-12 12:50:57 -0600 |
commit | ef8ef5f77c9a998f76a48277a883af1645b54117 (patch) | |
tree | 52fdcdbbf87dfa777fa87e8ac9e27577003f5d0a /test/py/tests/test_scsi.py | |
parent | d5e6401011a269328d3ea69468532b4125fd2bb9 (diff) | |
parent | 4341fb73326907faecfc9e3b711bbfcd3937b525 (diff) |
Merge branch '2024-04-12-assorted-updates'
- Assorted sandbox fixes, cleanup some of the partition table code and a
few other fixes
Diffstat (limited to 'test/py/tests/test_scsi.py')
-rw-r--r-- | test/py/tests/test_scsi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_scsi.py b/test/py/tests/test_scsi.py index be2e283e7d2..445693cafd7 100644 --- a/test/py/tests/test_scsi.py +++ b/test/py/tests/test_scsi.py @@ -87,6 +87,6 @@ def test_scsi_dev(u_boot_console): def test_scsi_part(u_boot_console): test_scsi_dev(u_boot_console) output = u_boot_console.run_command('scsi part') - assert 'Partition Map for SCSI device' in output + assert 'Partition Map for scsi device' in output output = u_boot_console.run_command('echo $?') assert output.endswith('0') |