diff options
author | Nate Jiang <qiangjiang@google.com> | 2019-06-25 19:18:45 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-06-25 19:18:45 -0700 |
commit | 6c4828d0046b43d7f827bf326cbc555578ba7317 (patch) | |
tree | 9a2039b536aa67288e25159520acfd5df6c143a1 /tests | |
parent | 4d1b5cc915c42a57f681cc140c1a2c46e21aa915 (diff) | |
parent | b55924f05bde1a901aa0ef45368b47cd06816658 (diff) |
opt/net/wifi/util: add WPA2 symbol
am: b55924f05b
Change-Id: I015727714bb4bc152a0ec9173002495779e3ac05
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/util/InformationElementUtilTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/util/InformationElementUtilTest.java b/tests/wifitests/src/com/android/server/wifi/util/InformationElementUtilTest.java index 854458316..dd567053c 100644 --- a/tests/wifitests/src/com/android/server/wifi/util/InformationElementUtilTest.java +++ b/tests/wifitests/src/com/android/server/wifi/util/InformationElementUtilTest.java @@ -268,7 +268,7 @@ public class InformationElementUtilTest { capabilities.from(ies, beaconCap, false); String result = capabilities.generateCapabilitiesString(); - assertEquals("[RSN-PSK-CCMP+TKIP]", result); + assertEquals("[WPA2-PSK-CCMP+TKIP][RSN-PSK-CCMP+TKIP]", result); } /** @@ -384,7 +384,7 @@ public class InformationElementUtilTest { capabilities.from(ies, beaconCap, false); String result = capabilities.generateCapabilitiesString(); - assertEquals("[WPA-PSK-CCMP+TKIP][RSN-PSK-CCMP+TKIP]", result); + assertEquals("[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][RSN-PSK-CCMP+TKIP]", result); } /** @@ -423,7 +423,7 @@ public class InformationElementUtilTest { capabilities.from(ies, beaconCap, true); String result = capabilities.generateCapabilitiesString(); - assertEquals("[RSN-PSK+SAE-CCMP]", result); + assertEquals("[WPA2-PSK-CCMP][RSN-PSK+SAE-CCMP]", result); } /** |