mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
Update unit test for directory listing
After #1086, the directory listing starts with a <!DOCTYPE html> tag
This commit is contained in:
parent
a4a52ae9f6
commit
d7ba35bbb6
@ -1801,9 +1801,9 @@ START_TEST(test_request_handlers)
|
||||
#else
|
||||
ck_assert_int_eq(client_ri->status_code, 200);
|
||||
i = mg_read(client_conn, buf, sizeof(buf));
|
||||
ck_assert(i > 6);
|
||||
buf[6] = 0;
|
||||
ck_assert_str_eq(buf, "<html>");
|
||||
ck_assert(i > 21);
|
||||
buf[21] = 0;
|
||||
ck_assert_str_eq(buf, "<!DOCTYPE html><html>");
|
||||
#endif
|
||||
mg_close_connection(client_conn);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user