aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/selector.js
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2022-01-12 23:23:42 +0100
committerGitHub <noreply@github.com>2022-01-12 23:23:42 +0100
commiteb9ceb2facbeff1c66a41824bd0ac0c56d0c5c62 (patch)
tree68bb5a4b0dae63e2f24a761900a2b40f10521ee7 /test/unit/selector.js
parent9603b3c899af354a4f538fa5b15f9dac3fcc0f55 (diff)
downloadjquery-eb9ceb2facbeff1c66a41824bd0ac0c56d0c5c62.tar.gz
jquery-eb9ceb2facbeff1c66a41824bd0ac0c56d0c5c62.zip
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
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r--test/unit/selector.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index 0c81e4862..6cf288c19 100644
--- a/test/unit/selector.js
+++ b/test/unit/selector.js
@@ -643,7 +643,7 @@ QUnit.test( "attributes - special characters", function( assert ) {
var attrbad;
var div = document.createElement( "div" );
- // trac-3279
+ // trac-3729
div.innerHTML = "<div id='foo' xml:test='something'></div>";
assert.deepEqual( jQuery( "[xml\\:test]", div ).get(),
[ div.firstChild ],