diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/integration/test-apt-get-source-authenticated | 2 | ||||
-rw-r--r-- | test/interactive-helper/aptwebserver.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/test-apt-get-source-authenticated b/test/integration/test-apt-get-source-authenticated index 40710d5d6..d5a4facd5 100755 --- a/test/integration/test-apt-get-source-authenticated +++ b/test/integration/test-apt-get-source-authenticated @@ -2,7 +2,7 @@ # # Regression test for debian bug #749795. Ensure that we fail with # an error if apt-get source foo will download a source that comes -# from a unauthenticated repository +# from an unauthenticated repository # set -e diff --git a/test/interactive-helper/aptwebserver.cc b/test/interactive-helper/aptwebserver.cc index 109364d7a..2243ccea9 100644 --- a/test/interactive-helper/aptwebserver.cc +++ b/test/interactive-helper/aptwebserver.cc @@ -464,7 +464,7 @@ static bool parseFirstLine(std::ostream &log, int const client, std::string cons closeConnection = strcasecmp(LookupTag(request, "Connection", "Keep-Alive").c_str(), "close") == 0; else { - sendError(log, client, 500, request, sendContent, "Not a HTTP/1.{0,1} request", headers); + sendError(log, client, 500, request, sendContent, "Not an HTTP/1.{0,1} request", headers); return false; } |