From b2a1424659b162818ddc31bf9b96d9347bb08e44 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 9 Oct 2020 16:41:16 +0300 Subject: [PATCH] tests: Empty network profile parameters will be valid Remove this part of the dbus_network test case since it would be causing failures after wpa_supplicant is modified to accept empty strings through D-Bus. Signed-off-by: Jouni Malinen --- tests/hwsim/test_dbus.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/hwsim/test_dbus.py b/tests/hwsim/test_dbus.py index e9d6b9e39..7b3d4bee5 100644 --- a/tests/hwsim/test_dbus.py +++ b/tests/hwsim/test_dbus.py @@ -1812,8 +1812,7 @@ def test_dbus_network(dev, apdev): tests = [dbus.Dictionary({'psk': "1234567"}, signature='sv'), dbus.Dictionary({'identity': dbus.ByteArray()}, signature='sv'), - dbus.Dictionary({'identity': dbus.Byte(1)}, signature='sv'), - dbus.Dictionary({'identity': ""}, signature='sv')] + dbus.Dictionary({'identity': dbus.Byte(1)}, signature='sv')] for args in tests: try: iface.AddNetwork(args)