Re: Wrong code example in /docs/general/testing/testing.html
Fred Moyer <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <CAHrynWByw3fyG7Q1nYztZDh525tGSGUfR6ioEd-k4j66b0rtfw@mail.gmail.com> |
Thanks for the spot, update committed. On Mon, Mar 18, 2013 at 9:51 AM, Torsten Förtsch <[email protected]> wrote: > 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