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

index a5d2412a9bc9cf2164f83a7bdc29c3f5408fa984..c8c0667d34339750854cbd95ad5f00352f8f08c3 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 ) {}
 } );