From 44035dd1800490b44deed92d82927594626bee0f Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Fri, 22 Jul 2016 11:59:54 +0200 Subject: [PATCH] test/py: Fix mdio test case Use correct name for mdio. Signed-off-by: Michal Simek --- test/py/tests/test_mdio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/py/tests/test_mdio.py b/test/py/tests/test_mdio.py index 493157aa73b..1da3a7b5871 100644 --- a/test/py/tests/test_mdio.py +++ b/test/py/tests/test_mdio.py @@ -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) -- 2.47.3