From 2ce746e0453d777a14f973eec0592622083e86e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A8=E3=83=AA=E3=82=B9?= Date: Fri, 24 Sep 2021 13:15:20 +0900 Subject: [PATCH] test: fix asset file paths (#313) --- tests/tests.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/tests.js b/tests/tests.js index 50b128a..3c225f2 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -563,7 +563,7 @@ exports.defineAutoTests = function () { it( 'filetransfer.spec.11 should call the error callback on abort()', function (done) { - var fileURL = 'http://cordova.apache.org/downloads/BlueZedEx.mp3'; + var fileURL = 'http://cordova.apache.org/static/downloads/BlueZedEx.mp3'; fileURL = fileURL + '?q=' + new Date().getTime(); var specContext = this; @@ -583,7 +583,7 @@ exports.defineAutoTests = function () { it( 'filetransfer.spec.9 should not leave partial file due to abort', function (done) { - var fileURL = 'http://cordova.apache.org/downloads/logos_2.zip'; + var fileURL = 'http://cordova.apache.org/static/downloads/logos.zip'; var specContext = this; var fileSystemWin = function () { @@ -631,7 +631,7 @@ exports.defineAutoTests = function () { it( 'filetransfer.spec.10 should be stopped by abort()', function (done) { - var fileURL = 'http://cordova.apache.org/downloads/BlueZedEx.mp3'; + var fileURL = 'http://cordova.apache.org/static/downloads/BlueZedEx.mp3'; fileURL = fileURL + '?q=' + new Date().getTime(); var specContext = this;