Commit e76147f1 e76147f184bc6d9ebd756cc47b0aba8894b39e29 by Mickaël Andrieu

Update tester.rst

1 parent 4e3a6af1
...@@ -459,7 +459,7 @@ Asserts that the provided input is of the given className:: ...@@ -459,7 +459,7 @@ Asserts that the provided input is of the given className::
459 return 'moo!'; 459 return 'moo!';
460 }; 460 };
461 } 461 }
462 casper.test.begin('assertInstanceOf() tests', 1, function suite(test) { 462 casper.test.begin('assertInstanceOf() tests', 2, function suite(test) {
463 var daisy = new Cow(); 463 var daisy = new Cow();
464 test.assertInstanceOf(daisy, Cow, "Okay, daisy is a cow."); 464 test.assertInstanceOf(daisy, Cow, "Okay, daisy is a cow.");
465 test.assertInstanceOf(daisy, Casper, "Moo is not Boo"); 465 test.assertInstanceOf(daisy, Casper, "Moo is not Boo");
......