Re: Wrong code example in /docs/general/testing/testing.html
Torsten Förtsch <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <[email protected]> |
On 03/12/2013 02:59 AM, MartÃn Ferrari wrote:
> + $r->write("ok 1");
> + $r->write("not ok 2");
I think it should read (missing \n):
+ $r->write("ok 1\n");
+ $r->write("not ok 2\n");
Torsten