Skip to content

Commit e175138

Browse files
committed
Tests: Use new jquery-compat-git and jquery-git files
1 parent f9ad17d commit e175138

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-
"git1": "git1",
6+
"compat-git": "compat-git",
77
"1.11": "1.11.0 1.11.1 1.11.2",
88
"1.10": "1.10.0 1.10.1 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 === "git1" ) {
96+
if ( version === "git" || version === "compat-git" ) {
9797
url = "http://code.jquery.com/jquery-" + version;
9898
} else {
9999
url = "../../../external/jquery-" + ( version || "1.11.2" ) + "/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",
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-
"git1", "git"
30+
"compat-git", "git"
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",
9-
"git1"
9+
"compat-git"
1010
],
1111
additionalTests = {
1212
// component: [ "other_test.html" ]

0 commit comments

Comments
 (0)