Commit 8ef19d89 8ef19d89e5738007886a3105a7f8d2b0cbda4dda by Mickaël Andrieu

Update tester.rst (very minor fix)

1 parent 8bab6abf
...@@ -246,7 +246,7 @@ Asserts that the element matching the provided :ref:`selector expression <select ...@@ -246,7 +246,7 @@ Asserts that the element matching the provided :ref:`selector expression <select
246 246
247 casper.test.begin('assertNotVisible() tests', 1, function(test) { 247 casper.test.begin('assertNotVisible() tests', 1, function(test) {
248 casper.start().then(function() { 248 casper.start().then(function() {
249 this.setContent('<div class=".foo" style="display:none>boo</div>'); 249 this.setContent('<div class="foo" style="display:none>boo</div>');
250 test.assertNotVisible('.foo'); 250 test.assertNotVisible('.foo');
251 }).run(function() { 251 }).run(function() {
252 test.done(); 252 test.done();
......