Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4afd179a authored by Guang Zhu's avatar Guang Zhu
Browse files

follow up minor fixes for connectivity manager test

Change-Id: I8f0606890b21d67130efb3bc02c6825823060139
parent d21f1c1e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -520,7 +520,7 @@ public class ConnectivityManagerTestBase extends InstrumentationTestCase {
     * @param length required length of the string
     * @return
     */
    protected boolean isHex(String input, int length) {
    protected static boolean isHex(String input, int length) {
        Pattern p = Pattern.compile(String.format("[0-9A-Fa-f]{%d}", length));
        return p.matcher(input).matches();
    }
+2 −2
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ public class WifiAssociationTest extends ConnectivityManagerTestBase {
                config.allowedProtocols.set(Protocol.WPA);
                config.allowedPairwiseCiphers.set(PairwiseCipher.TKIP);
                config.allowedGroupCiphers.set(GroupCipher.TKIP);
                if (mPassword.matches("[0-9A-Fa-f]{64}")) {
                if (isHex(mPassword, 64)) {
                    config.preSharedKey = mPassword;
                } else {
                    config.preSharedKey = '"' + mPassword + '"';
@@ -150,7 +150,7 @@ public class WifiAssociationTest extends ConnectivityManagerTestBase {
                config.allowedPairwiseCiphers.set(PairwiseCipher.CCMP);
                config.allowedGroupCiphers.set(GroupCipher.CCMP);
                config.allowedProtocols.set(Protocol.RSN);
                if (mPassword.matches("[0-9A-Fa-f]{64}")) {
                if (isHex(mPassword, 64)) {
                    config.preSharedKey = mPassword;
                } else {
                    config.preSharedKey = '"' + mPassword + '"';