Skip to content

Commit 70625f3

Browse files
committed
Build: Use jquery-git in place of jquery-compat-git
jQuery Compat is not going to get released after all; jQuery UI should be tested against jquery-git instead of jquery-compat-git.
1 parent 0cc197a commit 70625f3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build/tasks/testswarm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = function( grunt ) {
33
"use strict";
44

55
var versions = {
6-
"compat-git": "compat-git",
6+
"git": "git",
77
"1.11": "1.11.0 1.11.1 1.11.2 1.11.3",
88
"1.10": "1.10.0 1.10.2",
99
"1.9": "1.9.0 1.9.1",

tests/lib/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function jqueryUrl() {
9393
var version = parseUrl().jquery;
9494
var url;
9595

96-
if ( version === "git" || version === "compat-git" ) {
96+
if ( version === "git" ) {
9797
url = "http://code.jquery.com/jquery-" + version;
9898
} else {
9999
url = "../../../external/jquery-" + ( version || "1.11.3" ) + "/jquery";

tests/lib/qunit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ QUnit.config.urlConfig.push( {
2727
"1.11.0", "1.11.1", "1.11.2", "1.11.3",
2828
"2.0.0", "2.0.1", "2.0.2", "2.0.3",
2929
"2.1.0", "2.1.1", "2.1.2", "2.1.3",
30-
"compat-git", "git", "custom"
30+
"git", "custom"
3131
],
3232
tooltip: "Which jQuery Core version to test against"
3333
} );

tests/unit/subsuite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var versions = [
66
"1.9.0", "1.9.1",
77
"1.10.0", "1.10.1", "1.10.2",
88
"1.11.0", "1.11.1", "1.11.2", "1.11.3",
9-
"compat-git"
9+
"git"
1010
],
1111
additionalTests = {
1212

0 commit comments

Comments
 (0)