Skip to content

Commit eb9ceb2

Browse files
authored
Docs: Fix incorrect trac-NUMBER references
PR gh-4993 changed a few too many issue references to `trac-NUMBER` ones. This change fixes them. It also fixes a typo in one Trac issue number in selector tests. Ref gh-4993 Closes gh-4995
1 parent 9603b3c commit eb9ceb2

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

test/unit/ajax.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2770,8 +2770,8 @@ if ( typeof window.ArrayBuffer === "undefined" || typeof new XMLHttpRequest().re
27702770
} );
27712771

27722772
// Selector should be trimmed to avoid leading spaces (trac-14773)
2773-
// Selector should include any valid non-HTML whitespace (trac-3003)
2774-
QUnit.test( "jQuery.fn.load( URL_SELECTOR with non-HTML whitespace(trac-3003) )", function( assert ) {
2773+
// Selector should include any valid non-HTML whitespace (gh-3003)
2774+
QUnit.test( "jQuery.fn.load( URL_SELECTOR with non-HTML whitespace(gh-3003) )", function( assert ) {
27752775
assert.expect( 1 );
27762776
var done = assert.async();
27772777
jQuery( "#first" ).load( baseURL + "test3.html #whitespace\\\\xA0 ", function() {

test/unit/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ QUnit.test( "jQuery.map", function( assert ) {
817817
result = jQuery.map( Array( 300000 ), function( v, k ) {
818818
return k;
819819
} );
820-
assert.equal( result.length, 300000, "Able to map 300000 records without any problems (trac-4320)" );
820+
assert.equal( result.length, 300000, "Able to map 300000 records without any problems (gh-4320)" );
821821
} else {
822822
assert.ok( "skip", "Array#flat isn't supported in IE" );
823823
}

test/unit/css.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ if ( jQuery.fn.offset ) {
11821182
} );
11831183
}
11841184

1185-
QUnit.test( "Do not append px (trac-9548, trac-12990, trac-2792)", function( assert ) {
1185+
QUnit.test( "Do not append px (trac-9548, trac-12990, gh-2792)", function( assert ) {
11861186
assert.expect( 4 );
11871187

11881188
var $div = jQuery( "<div>" ).appendTo( "#qunit-fixture" );

test/unit/data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ QUnit.test( "data-* attributes", function( assert ) {
290290

291291
child.appendTo( "#qunit-fixture" );
292292
assert.equal( child.data( "myobj" ), "old data", "Value accessed from data-* attribute" );
293-
assert.equal( child.data( "foo-42" ), "boosh", "camelCasing does not affect numbers (trac-1751)" );
293+
assert.equal( child.data( "foo-42" ), "boosh", "camelCasing does not affect numbers (gh-1751)" );
294294

295295
child.data( "myobj", "replaced" );
296296
assert.equal( child.data( "myobj" ), "replaced", "Original data overwritten" );

test/unit/effects.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1949,7 +1949,7 @@ QUnit.test( "Animation callbacks (trac-11797)", function( assert ) {
19491949
this.clock.tick( 10 );
19501950
} );
19511951

1952-
QUnit.test( "Animation callbacks in order (trac-2292)", function( assert ) {
1952+
QUnit.test( "Animation callbacks in order (gh-2283)", function( assert ) {
19531953
assert.expect( 9 );
19541954

19551955
var done = assert.async(),

test/unit/manipulation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ QUnit.test( "html(String) with HTML5 (Bug trac-6485)", function( assert ) {
465465
assert.equal( jQuery( "#qunit-fixture" ).children().children().children().length, 1, "Make sure nested HTML5 elements can hold children." );
466466
} );
467467

468-
QUnit.test( "html(String) tag-hyphenated elements (Bug trac-1987)", function( assert ) {
468+
QUnit.test( "html(String) tag-hyphenated elements (Bug gh-1987)", function( assert ) {
469469

470470
assert.expect( 27 );
471471

test/unit/selector.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ QUnit.test( "attributes - special characters", function( assert ) {
643643
var attrbad;
644644
var div = document.createElement( "div" );
645645

646-
// trac-3279
646+
// trac-3729
647647
div.innerHTML = "<div id='foo' xml:test='something'></div>";
648648
assert.deepEqual( jQuery( "[xml\\:test]", div ).get(),
649649
[ div.firstChild ],

0 commit comments

Comments
 (0)