[PATCH 1/6] tests: fix wpas_mesh_password_mismatch_retry
Thomas Pedersen <[email protected]>
| Newsgroups | gmane.linux.drivers.hostap |
|---|---|
| Message-ID | <[email protected]> |
This test was failing because the 2nd mesh STA was being configured with the correct passphrase by default. To fix, avoid setting the default passphrase. Signed-off-by: Thomas Pedersen <[email protected]> --- tests/hwsim/test_wpas_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py index 3c918184f158..baea71501f0b 100644 --- a/tests/hwsim/test_wpas_mesh.py +++ b/tests/hwsim/test_wpas_mesh.py @@ -1302,7 +1302,7 @@ def test_wpas_mesh_password_mismatch_retry(dev, apdev): dev[0].mesh_group_add(id) dev[1].request("SET sae_groups ") - id = add_mesh_secure_net(dev[1]) + id = add_mesh_secure_net(dev[1], psk=False) dev[1].set_network_quoted(id, "psk", "wrong password") dev[1].mesh_group_add(id) -- 2.20.1