From: Jouni Malinen Date: Tue, 13 Aug 2024 08:44:09 +0000 (+0300) Subject: tests: Fix duplicate test case name X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=189972d129ecbf450de4523bdeced54a88b01c28;p=thirdparty%2Fhostap.git tests: Fix duplicate test case name The new test case for an AP MLD in a bridge was supposed to use a unique test name to avoid hiding an existing test case. Fixes: c4f927926765 ("tests: AP MLD with two links in a bridge") Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_eht.py b/tests/hwsim/test_eht.py index bde2b0e08..97922152d 100644 --- a/tests/hwsim/test_eht.py +++ b/tests/hwsim/test_eht.py @@ -557,7 +557,7 @@ def test_eht_mld_sae_two_links_disable_enable(dev, apdev): """AP MLD with two links and disabling/enabling full AP MLD""" run_eht_mld_sae_two_links(dev, apdev, disable_enable=True) -def test_eht_mld_sae_two_links(dev, apdev): +def test_eht_mld_sae_two_links_bridge(dev, apdev): """AP MLD with two links in a bridge""" run_eht_mld_sae_two_links(dev, apdev, bridge=True)