summaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/providers
diff options
context:
space:
mode:
authorSteve Howard <showard@google.com>2010-09-22 15:57:30 -0700
committerSteve Howard <showard@google.com>2010-09-22 18:31:44 -0700
commitebb555c0687061993dd6a22d15f6aab2437ee8c5 (patch)
tree6968836e8e8a549c51af802aeb31b551372a38f2 /tests/src/com/android/providers
parentece96c7475696d8b447bb8523f4ad83c897002ea (diff)
downloadandroid_packages_providers_DownloadProvider-ebb555c0687061993dd6a22d15f6aab2437ee8c5.tar.gz
android_packages_providers_DownloadProvider-ebb555c0687061993dd6a22d15f6aab2437ee8c5.tar.bz2
android_packages_providers_DownloadProvider-ebb555c0687061993dd6a22d15f6aab2437ee8c5.zip
Support multi-valued HTTP headers, handle new API changes
* backend support for multiple values for the same HTTP headers, for corresponding API changes * other minor changes in response to DownloadManager API changes Change-Id: I7c595e94a60ed7afaca6cc3fb4c05aaeeff20c2a
Diffstat (limited to 'tests/src/com/android/providers')
-rw-r--r--tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java b/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java
index 6c81bc65..91cc3f3b 100644
--- a/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java
+++ b/tests/src/com/android/providers/downloads/PublicApiFunctionalTest.java
@@ -306,8 +306,8 @@ public class PublicApiFunctionalTest extends AbstractPublicApiTest {
public void testRequestHeaders() throws Exception {
enqueueEmptyResponse(HTTP_OK);
- Download download = enqueueRequest(getRequest().setRequestHeader("Header1", "value1")
- .setRequestHeader("Header2", "value2"));
+ Download download = enqueueRequest(getRequest().addRequestHeader("Header1", "value1")
+ .addRequestHeader("Header2", "value2"));
download.runUntilStatus(DownloadManager.STATUS_SUCCESSFUL);
List<String> headers = takeRequest().getHeaders();
@@ -316,7 +316,7 @@ public class PublicApiFunctionalTest extends AbstractPublicApiTest {
}
public void testDelete() throws Exception {
- Download download = enqueueRequest(getRequest().setRequestHeader("header", "value"));
+ Download download = enqueueRequest(getRequest().addRequestHeader("header", "value"));
mManager.remove(download.mId);
Cursor cursor = mManager.query(new DownloadManager.Query());
try {