]> source.dussan.org Git - jquery.git/commitdiff
Tests: more style corrections
authorOleg Gaidarenko <markelog@gmail.com>
Tue, 8 Sep 2015 00:28:56 +0000 (03:28 +0300)
committerOleg Gaidarenko <markelog@gmail.com>
Tue, 8 Sep 2015 01:06:20 +0000 (04:06 +0300)
Provocated by jscs-dev/node-jscs@2de68c0d8351103bb2a989dc942ab47a391d3546

Closes gh-2578

test/unit/core.js
test/unit/data.js
test/unit/event.js

index e2178a3749302bf28765455a64cd6fd0c1eb34c1..a899e136565c2d626b9b8376c1bf4091488e2ba4 100644 (file)
@@ -1394,7 +1394,7 @@ QUnit.test( "jQuery.parseHTML", function( assert ) {
 
 if ( jQuery.support.createHTMLDocument ) {
        QUnit.asyncTest( "jQuery.parseHTML", function( assert ) {
-               assert.expect ( 1 );
+               assert.expect( 1 );
 
                Globals.register( "parseHTMLError" );
 
index e105be2524c3c634fed76d8d9323c3f17808c866..53cd3a4bbbc6c6a2ea2700ec9b185b0e0048f348 100644 (file)
@@ -843,7 +843,7 @@ QUnit.test( "acceptData", function( assert ) {
 
        form = jQuery( "#form" ).append( "<input id='nodeType'/><input id='nodeName'/>" )[ 0 ];
        assert.equal( 42, jQuery( form ) .data( "test", 42 ).data( "test" ), "form with aliased DOM properties" );
-});
+} );
 
 QUnit.test( "Check proper data removal of non-element descendants nodes (#8335)", function( assert ) {
        assert.expect( 1 );
index 4c7660e4ae5eb4417310c9f4d8ec3fc8aa3df1cf..f932317d2c2be27fe608275e1fc2eda18ea499c8 100644 (file)
@@ -2493,7 +2493,7 @@ testIframeWithCallback(
                var input = jQuery( frameDoc ).find( "#frame-input" );
 
                // Create a focusin handler on the parent; shouldn't affect the iframe's fate
-               jQuery ( "body" ).on( "focusin.iframeTest", function() {
+               jQuery( "body" ).on( "focusin.iframeTest", function() {
                        assert.ok( false, "fired a focusin event in the parent document" );
                } );