summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2021-12-07 21:17:16 -0500
committerGarrett D'Amore <garrett@damore.org>2021-12-07 21:17:16 -0500
commit7117da5d94b60917dd87fb7e0000d24ed2b39576 (patch)
treeb92f29624c57a53e539cb391621e2eb561b2e172 /tests
parent037d26a902a3cd5016052c76a6747e40c1a0df50 (diff)
downloadnng-7117da5d94b60917dd87fb7e0000d24ed2b39576.tar.gz
nng-7117da5d94b60917dd87fb7e0000d24ed2b39576.tar.bz2
nng-7117da5d94b60917dd87fb7e0000d24ed2b39576.zip
fixes #1522 tests/httpserver static handler response body format not correct
Diffstat (limited to 'tests')
-rw-r--r--tests/httpserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/httpserver.c b/tests/httpserver.c
index 445aad0e..f7a28b5d 100644
--- a/tests/httpserver.c
+++ b/tests/httpserver.c
@@ -25,7 +25,7 @@
#include "convey.h"
#include "core/nng_impl.h"
-const char *doc1 = "<html><body>Someone <b>is</b> home!</body</html>";
+const char *doc1 = "<html><body>Someone <b>is</b> home!</body></html>";
const char *doc2 = "This is a text file.";
const char *doc3 = "<html><body>This is doc number 3.</body></html>";
const char *doc4 = "<html><body>Whoops, Errored!</body></html>";