diff options
author | Etan Cohen <etancohen@google.com> | 2019-09-26 16:42:25 -0700 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2019-09-26 16:42:25 -0700 |
commit | 04f9742eebd89d9db4a61f0675bc998ae4d720c8 (patch) | |
tree | 7ae3d477189933e78e8decb19e874905aff06d8d /tests | |
parent | b6b18ba110233448ee62a3483282c8f63cb45a84 (diff) |
Add support for Wi-Fi channels 169 & 173
Add channel 169 & 173 to a utility method.
Note: this is a utility method to translate frequency values to
channels. It does not (and never did) perform any regulatory
compliance (i.e. it does not check whether the specified channel
is allowed in any particular regulatory domain).
Bug: 141328297
Test: atest com.android.server.wifi
Change-Id: I8c71543bc9de4f2975b0b528a5c6ae0fe5167995
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/util/ApConfigUtilTest.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/util/ApConfigUtilTest.java b/tests/wifitests/src/com/android/server/wifi/util/ApConfigUtilTest.java index 823b93846..d02a790c4 100644 --- a/tests/wifitests/src/com/android/server/wifi/util/ApConfigUtilTest.java +++ b/tests/wifitests/src/com/android/server/wifi/util/ApConfigUtilTest.java @@ -99,7 +99,9 @@ public class ApConfigUtilTest extends WifiBaseTest { 5765, 153, 5785, 157, 5805, 161, - 5825, 165 + 5825, 165, + 5845, 169, + 5865, 173 }; private static final Integer[] ALLOWED_2G_CHANNELS = {1, 2, 3, 4}; |