From: Jouni Malinen Date: Fri, 21 Dec 2018 09:43:09 +0000 (+0200) Subject: tests: DPP_CONFIGURATOR_SIGN without double space X-Git-Tag: hostap_2_8~742 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9552a7364f4f7d6d7ea9339a0b8440d3b41ffb72;p=thirdparty%2Fhostap.git tests: DPP_CONFIGURATOR_SIGN without double space Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_dpp.py b/tests/hwsim/test_dpp.py index db9536105..256d1741a 100644 --- a/tests/hwsim/test_dpp.py +++ b/tests/hwsim/test_dpp.py @@ -3584,7 +3584,7 @@ def run_dpp_own_config(dev, apdev, own_curve=None, expect_failure=False, update_hapd_config(hapd) dev[0].set("dpp_config_processing", "1") - cmd = "DPP_CONFIGURATOR_SIGN conf=sta-dpp configurator=%d%s" % (conf_id, extra) + cmd = "DPP_CONFIGURATOR_SIGN conf=sta-dpp configurator=%d%s" % (conf_id, extra) if own_curve: cmd += " curve=" + own_curve res = dev[0].request(cmd) @@ -3641,7 +3641,7 @@ def run_dpp_own_config_ap(dev, apdev, reconf_configurator=False, extra=""): if "FAIL" in csign or len(csign) == 0: raise Exception("DPP_CONFIGURATOR_GET_KEY failed") - cmd = "DPP_CONFIGURATOR_SIGN conf=ap-dpp configurator=%d%s" % (conf_id, extra) + cmd = "DPP_CONFIGURATOR_SIGN conf=ap-dpp configurator=%d%s" % (conf_id, extra) res = hapd.request(cmd) if "FAIL" in res: raise Exception("Failed to generate own configuration")