From: Jouni Malinen Date: Tue, 5 Apr 2016 22:05:55 +0000 (+0300) Subject: tests: Use \t instead of \n in discovery_ctrl_char_in_devname X-Git-Tag: hostap_2_6~514 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=596a3fef83f23634f5ad4a30afcbb2c0f73fab06;p=thirdparty%2Fhostap.git tests: Use \t instead of \n in discovery_ctrl_char_in_devname This is needed to allow the SET command to be modified to reject newline characters. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_p2p_discovery.py b/tests/hwsim/test_p2p_discovery.py index 8931421c3..5f3ebac14 100644 --- a/tests/hwsim/test_p2p_discovery.py +++ b/tests/hwsim/test_p2p_discovery.py @@ -179,7 +179,7 @@ def test_discovery_ctrl_char_in_devname(dev): dev[1].global_request("SET device_name Device B") def _test_discovery_ctrl_char_in_devname(dev): - dev[1].global_request("SET device_name Device\nB") + dev[1].global_request("SET device_name Device\tB") addr0 = dev[0].p2p_dev_addr() addr1 = dev[1].p2p_dev_addr() res = dev[0].p2p_start_go(freq=2422)