From 2b5488a4e114fe2ae8dfb32b88c5b07473449dbf Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 20 Mar 2016 11:08:12 +0200 Subject: [PATCH] tests: Return result from WpaSupplicant::global_request() in all cases The no self.global_iface case was not returning the result from the self.request() case. While this is not really a path that is supposed to be used, make it return the response since it is at least theoretically possible to get here. Signed-off-by: Jouni Malinen --- tests/hwsim/wpasupplicant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hwsim/wpasupplicant.py b/tests/hwsim/wpasupplicant.py index 3978b860f..4856d3f5f 100644 --- a/tests/hwsim/wpasupplicant.py +++ b/tests/hwsim/wpasupplicant.py @@ -135,7 +135,7 @@ class WpaSupplicant: def global_request(self, cmd): if self.global_iface is None: - self.request(cmd) + return self.request(cmd) else: ifname = self.ifname or self.global_iface logger.debug(ifname + ": CTRL(global): " + cmd)