From b44e32fde986e564a9cfe3470a2b787d94d2a9c1 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 3 Feb 2022 11:43:20 -0800 Subject: [PATCH] auto-t: only wait for wpa_s to get the DPP configuration As far as wpa_supplicant goes we don't need to test if it can actually connect to the network, just that it receives the DPP configuration. --- autotests/testDPP/connection_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/testDPP/connection_test.py b/autotests/testDPP/connection_test.py index 38d44b25..a451d584 100644 --- a/autotests/testDPP/connection_test.py +++ b/autotests/testDPP/connection_test.py @@ -80,7 +80,7 @@ class Test(unittest.TestCase): self.wpas.dpp_enrollee_start(uri) - self.hapd.wait_for_event('AP-STA-CONNECTED 42:00:00:00:00:00') + self.wpas.wait_for_event('DPP-CONF-RECEIVED') def setUp(self): self.wd = IWD(True)