]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
test/py: Fix mdio test case
authorMichal Simek <michal.simek@xilinx.com>
Fri, 22 Jul 2016 09:59:54 +0000 (11:59 +0200)
committerMichal Simek <michal.simek@xilinx.com>
Fri, 22 Jul 2016 13:22:44 +0000 (15:22 +0200)
Use correct name for mdio.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
test/py/tests/test_mdio.py

index 493157aa73bcd80fc02fb816a51ed530cbac3511..1da3a7b587186fba0c9f78d5cc17edc7dc2852d5 100644 (file)
@@ -4,8 +4,8 @@
 
 import pytest
 
-@pytest.mark.buildconfigspec("cmd_mdio")
-def test_mii_list(u_boot_console):
+@pytest.mark.buildconfigspec("cmd_mii")
+def test_mdio_list(u_boot_console):
     expected_response = "<-->"
     response = u_boot_console.run_command("mdio list")
     assert(expected_response in response)