diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2015-10-06 15:38:32 +0200 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-10-08 14:02:59 -0400 |
commit | dc2bede25408364a0f2f01d6b53ecc1b5d0b41c3 (patch) | |
tree | c9c0068943bd19fab5bda37b209fcae61921fd57 | |
parent | 6ed30a6a5e789779549fee2972581ca0884a2e42 (diff) | |
download | jquery-ui-dc2bede25408364a0f2f01d6b53ecc1b5d0b41c3.tar.gz jquery-ui-dc2bede25408364a0f2f01d6b53ecc1b5d0b41c3.zip |
Checkboxradio: Fix invalid markup in core tests
-rw-r--r-- | tests/unit/checkboxradio/core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/checkboxradio/core.js b/tests/unit/checkboxradio/core.js index 6d4ab6a22..5fb13f586 100644 --- a/tests/unit/checkboxradio/core.js +++ b/tests/unit/checkboxradio/core.js @@ -55,7 +55,7 @@ test( "Checkbox creation requires a label, and finds it in all cases", function( "<span><input type='checkbox' id='t7092b'><label for='t7092b'></label></span>", "<span><span><input type='checkbox' id='t7092c'></span><label for='t7092c'></label></span>", "<span><input type='checkbox' id='t7092d'></span><span><label for='t7092d'></label></span>", - "<span><input type='checkbox' id='t7092e'><span><label for='t7092e'></label></span>", + "<span><input type='checkbox' id='t7092e'><span><label for='t7092e'></label></span></span>", "<span><label><input type='checkbox' id='t7092f'></label></span>", "<span><input type='checkbox' id='check:7534'><label for='check:7534'>Label</label></span>" ]; |