From c3749ca92474c892876acfcde4806149536a18f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski-Owczarek?= Date: Wed, 29 Sep 2021 19:07:43 +0200 Subject: [PATCH] Tests: Take development jQuery versions from releases.jquery.com code.jquery.com is now used just for the specific versions. --- tests/lib/bootstrap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 7fd56210c7c..1f80b33b91a 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -108,7 +108,7 @@ function jqueryUrl() { var url; if ( version === "git" || version === "3.x-git" ) { - url = "https://code.jquery.com/jquery-" + version; + url = "https://releases.jquery.com/git/jquery-" + version; } else { url = "../../../external/jquery-" + version + "/jquery"; } @@ -121,7 +121,7 @@ function migrateUrl() { var url; if ( jqueryVersion === "git" ) { - url = "https://code.jquery.com/jquery-migrate-git"; + url = "https://releases.jquery.com/git/jquery-migrate-git"; } else if ( jqueryVersion[ 0 ] === "3" ) { url = "../../../external/jquery-migrate-3.3.2/jquery-migrate"; } else if ( jqueryVersion[ 0 ] === "1" || jqueryVersion[ 0 ] === "2" ) {