From: Jouni Malinen Date: Tue, 22 Aug 2017 21:31:30 +0000 (+0300) Subject: tests: Update DPP discovery override value format X-Git-Tag: hostap_2_7~1161 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96fa53f911bc782aa9d70567191f7bd50b0ff2e2;p=thirdparty%2Fhostap.git tests: Update DPP discovery override value format This changed in the DPP tech spec, so update the test case to match the current encoding. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_dpp.py b/tests/hwsim/test_dpp.py index 0a0bdd919..3af8a6462 100644 --- a/tests/hwsim/test_dpp.py +++ b/tests/hwsim/test_dpp.py @@ -618,7 +618,7 @@ def test_dpp_config_dpp_override_secp521r1(dev, apdev): def test_dpp_config_override_objects(dev, apdev): """Generate DPP Config Object and override objects)""" check_dpp_capab(dev[1]) - discovery = '{\n"ssid":"mywifi",\n"op_cl":81,\n"ch_list":\n[\n{"ch":1},\n{"ch":6},\n{"ch":11}\n]\n}' + discovery = '{\n"ssid":"mywifi",\n"op_cl":81,\n"ch_list":\n[1,6]\n}' groups = '[\n {"groupId":"home","netRole":"sta"},\n {"groupId":"cottage","netRole":"sta"}\n]' dev[1].set("dpp_discovery_override", discovery) dev[1].set("dpp_groups_override", groups)