Commit 19eb2966 19eb2966c80a02ecf4b77c3f46430b7be3e35e8e by Ben Johnson

Fixed a small documentation bug with assertSelectorHasText()

1 parent 4817c308
...@@ -299,7 +299,7 @@ Asserts that given text exists in elements matching the provided :ref:`selector ...@@ -299,7 +299,7 @@ Asserts that given text exists in elements matching the provided :ref:`selector
299 299
300 casper.test.begin('assertSelectorHasText() tests', 1, function(test) { 300 casper.test.begin('assertSelectorHasText() tests', 1, function(test) {
301 casper.start('http://google.com/', function() { 301 casper.start('http://google.com/', function() {
302 test.assertSelectorDoesntHaveText('title', 'Google'); 302 test.assertSelectorHasText('title', 'Google');
303 }).run(function() { 303 }).run(function() {
304 test.done(); 304 test.done();
305 }); 305 });
......