~ubuntu-branches/debian/sid/pion/sid

« back to all changes in this revision

Viewing changes to tests/http_message_tests.cpp

  • Committer: Package Import Robot
  • Author(s): Roberto C. Sanchez
  • Date: 2013-09-23 21:34:29 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130923213429-5vx60v30oitv2rnl
Tags: 5.0.4+dfsg-1
* New upstream release
* Make libpion-dev, libpion-plugins, and libpion-plugins-dev conflict
  with their counterparts from the old package (Closes: #719771, #719772)
* Add get-orig-source target to debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
617
617
    
618
618
    // validate file contents
619
619
    std::string rsp_contents = getFileContents();
620
 
    BOOST_CHECK_EQUAL(rsp_contents, "HTTP/1.1 200 OK\r\nConnection: Keep-Alive\r\nContent-Length: 0\r\nSet-Cookie: a=\"value\"; Version=\"1\"; Path=\"/\"\r\n\r\n");
 
620
    BOOST_CHECK_EQUAL(rsp_contents, "HTTP/1.1 200 OK\r\nConnection: Keep-Alive\r\nContent-Length: 0\r\nSet-Cookie: a=\"value\"; Version=1; Path=/\r\n\r\n");
621
621
}
622
622
 
623
623
BOOST_AUTO_TEST_SUITE_END()