]> source.dussan.org Git - jquery.git/commitdiff
Tests: fix lint in restored test
authorTimmy Willison <timmywillisn@gmail.com>
Thu, 7 Jan 2016 19:08:43 +0000 (14:08 -0500)
committerTimmy Willison <timmywillisn@gmail.com>
Thu, 7 Jan 2016 19:08:43 +0000 (14:08 -0500)
test/unit/event.js

index b574efc7e0275b8c573c2313f0434271d2a97816..6cccb8d1af7e524f1fd03ec5e1fe3f689e83361d 100644 (file)
@@ -11,12 +11,12 @@ QUnit.test( "null or undefined handler", function( assert ) {
        // Supports Fixes bug #7229
        try {
                jQuery( "#firstp" ).on( "click", null );
-               ok( true, "Passing a null handler will not throw an exception" );
+               assert.ok( true, "Passing a null handler will not throw an exception" );
        } catch ( e ) {}
 
        try {
                jQuery( "#firstp" ).on( "click", undefined );
-               ok( true, "Passing an undefined handler will not throw an exception" );
+               assert.ok( true, "Passing an undefined handler will not throw an exception" );
        } catch ( e ) {}
 } );