diff --git a/autotests/testDPP/pkex_test.py b/autotests/testDPP/pkex_test.py index 6c5cf054..9e0b5dd8 100644 --- a/autotests/testDPP/pkex_test.py +++ b/autotests/testDPP/pkex_test.py @@ -168,6 +168,12 @@ class Test(unittest.TestCase): condition = 'obj.state == DeviceState.connected' self.wd.wait_for_object_condition(self.device[1], condition) + # Check additional settings were carried over + with open('/tmp/ns0/ssidCCMP.psk', 'r') as f: + settings = f.read() + + self.assertIn("SendHostname=true", settings) + def test_pkex_configurator_with_agent(self): self.start_iwd_pkex_configurator(self.device[0], agent=True) diff --git a/autotests/testDPP/ssidCCMP.psk b/autotests/testDPP/ssidCCMP.psk index d428fd34..a82324c8 100644 --- a/autotests/testDPP/ssidCCMP.psk +++ b/autotests/testDPP/ssidCCMP.psk @@ -1,14 +1,5 @@ [Security] Passphrase=secret123 -[DeviceProvisioning] -SharedCode=secret123 -SharedCodeIdentifier=test -ExactConfig=true - [IPv4] SendHostname=true - -[Settings] -AutoConnect=true -Hidden=false