Commit be5c0460 be5c04602749a992b65577eeb136284564d55e22 by Nicolas Perriault

Merge pull request #419 from benjohnson/assert-selector-doc-bug

Fixed a small documentation bug with assertSelectorHasText()
2 parents 5beb7e48 19eb2966
......@@ -299,7 +299,7 @@ Asserts that given text exists in elements matching the provided :ref:`selector
casper.test.begin('assertSelectorHasText() tests', 1, function(test) {
casper.start('http://google.com/', function() {
test.assertSelectorDoesntHaveText('title', 'Google');
test.assertSelectorHasText('title', 'Google');
}).run(function() {
test.done();
});
......