diff options
author | Glen Kuhne <kuh@google.com> | 2017-07-18 20:36:49 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-07-18 20:36:49 +0000 |
commit | 313f94ec40d7dc2fdfb46c763ad314c88f2fd9aa (patch) | |
tree | b4e357b9092b70cd0dc205ef2ebf9703b5771c4d /tests | |
parent | 04834cf2247aaf622063d9455a67e1875ee4a947 (diff) | |
parent | ade7c0ebca5c15d82b08b2fdd229505c1fe4dbf9 (diff) |
Merge "Fix broken supplicantP2pIfaceHalTest" into oc-dr1-dev
am: ade7c0ebca
Change-Id: Ic321f31863b4032f687e50a0f28a2863c80498b1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java b/tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java index bcce0acc9..24f4854b5 100644 --- a/tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java +++ b/tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java @@ -1030,7 +1030,7 @@ public class SupplicantP2pIfaceHalTest { // Default value when service is not initialized. assertNull(mDut.getSsid(mPeerMacAddress)); executeAndValidateInitializationSequence(false, false, false); - assertEquals(mSsid, mDut.getSsid(mPeerMacAddress)); + assertEquals(NativeUtil.removeEnclosingQuotes(mSsid), mDut.getSsid(mPeerMacAddress)); } /** |