diff options
author | Glen Kuhne <kuh@google.com> | 2017-05-19 16:31:39 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-05-19 16:31:39 +0000 |
commit | 16bfc9b791c07bb60bf70ac844bef2683c0b57fe (patch) | |
tree | f69aea845b9eabd138f006fca6059e98fc2bea8e /tests | |
parent | c7bd7ea035ffcb13df827f0455d0322841ea3593 (diff) | |
parent | d25a33d68ce0b9d435b5af5522c4a6bc9b69f156 (diff) |
Merge "P2P: fix add upnp service version number parsing" into oc-dev am: 7bedba03d1
am: d25a33d68c
Change-Id: I2dd69c4118b367d88a6d70853e8dcf09c32d51a2
Diffstat (limited to 'tests')
-rw-r--r-- | tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java | 4 |
1 files changed, 2 insertions, 2 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 2ac70bae5..bcce0acc9 100644 --- a/tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java +++ b/tests/wifitests/src/com/android/server/wifi/p2p/SupplicantP2pIfaceHalTest.java @@ -116,8 +116,8 @@ public class SupplicantP2pIfaceHalTest { final String mInvalidBonjourService2 = "bonjour 123456"; final String mInvalidBonjourService3 = "bonjour invalid_hex 123456"; final String mInvalidBonjourService4 = "bonjour 123456 invalid_hex"; - final String mValidUpnpService = "upnp 1 serviceName"; - final int mValidUpnpServiceVersion = 1; + final String mValidUpnpService = "upnp 10 serviceName"; + final int mValidUpnpServiceVersion = 16; final String mValidUpnpServiceName = "serviceName"; final String mValidBonjourService = "bonjour 30313233 34353637"; final ArrayList<Byte> mValidBonjourServiceRequest = new ArrayList<Byte>() {{ |