From 0846f7670335d1304cc1efa814d5ac195507e123 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 21 Aug 2019 12:06:16 -0700 Subject: [PATCH] auto-t: add 'hotspot' network type --- autotests/util/iwd.py | 1 + 1 file changed, 1 insertion(+) diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py index e8c9d265..422f973d 100755 --- a/autotests/util/iwd.py +++ b/autotests/util/iwd.py @@ -171,6 +171,7 @@ class NetworkType(Enum): open = 'open' psk = 'psk' eap = '8021x' + hotspot = 'hotspot' def __str__(self): return str(self.value)