summaryrefslogtreecommitdiffstats
path: root/updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java
diff options
context:
space:
mode:
authorZhomart Mukhamejanov <zhomart@google.com>2018-05-03 05:30:53 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-05-03 05:30:53 +0200
commit2e8e6e3ab46064be251be0adb340b8f5f47a90b8 (patch)
tree0ae6275a5ceb0505db473b61b9cb1308409966bb /updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java
parentMerge "screen_ui: Use std::string in DrawTextLine() and siblings." am: b4ded4a6ce (diff)
parentMerge "updater_sample: Add streaming to PayloadSpec" (diff)
downloadandroid_bootable_recovery-2e8e6e3ab46064be251be0adb340b8f5f47a90b8.tar
android_bootable_recovery-2e8e6e3ab46064be251be0adb340b8f5f47a90b8.tar.gz
android_bootable_recovery-2e8e6e3ab46064be251be0adb340b8f5f47a90b8.tar.bz2
android_bootable_recovery-2e8e6e3ab46064be251be0adb340b8f5f47a90b8.tar.lz
android_bootable_recovery-2e8e6e3ab46064be251be0adb340b8f5f47a90b8.tar.xz
android_bootable_recovery-2e8e6e3ab46064be251be0adb340b8f5f47a90b8.tar.zst
android_bootable_recovery-2e8e6e3ab46064be251be0adb340b8f5f47a90b8.zip
Diffstat (limited to 'updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java')
-rw-r--r--updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java b/updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java
index df47c8ca8..dc7ec09e1 100644
--- a/updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java
+++ b/updater_sample/tests/src/com/example/android/systemupdatersample/util/FileDownloaderTest.java
@@ -73,7 +73,7 @@ public class FileDownloaderTest {
FileDownloader downloader = new FileDownloader(url, 160, 8, outFile);
downloader.download();
String downloadedContent = String.join("\n", Files.readAllLines(outFile.toPath()));
- // Look at tools/create_test_ota.py
+ // archive contains text files with uppercase filenames
assertEquals("CARE_MAP", downloadedContent);
}