From d9cd657135fd13a97ea95ae488f21b5feafc34d3 Mon Sep 17 00:00:00 2001 From: Torsten Schmitz Date: Tue, 9 Nov 2021 20:46:58 +0100 Subject: [PATCH] auto-t: fix testP2P testP2P was failing with FileNotFoundError: [Errno 2] No such file or directory: '/tmp/wpa_supplicant.conf' --- tools/test-runner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-runner b/tools/test-runner index 9ae33301..5fc4285d 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -955,7 +955,7 @@ class TestContext(Namespace): else: wpas_radios = [rad for rad in self.radios if rad.name in settings] - self.wpas_interfaces = [rad.create_interface('wpa_supplicant.conf', 'wpas') \ + self.wpas_interfaces = [rad.create_interface(settings[rad.name], 'wpas') \ for rad in wpas_radios] def start_ofono(self):