From c21c3efac5d27b3d7610d8b6ce591a765019ad8f Mon Sep 17 00:00:00 2001 From: Andy Li <1450947+andy1li@users.noreply.github.com> Date: Mon, 16 Dec 2024 06:30:58 +0800 Subject: [PATCH] fix: Update file size in example response body metadata --- course-definition.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course-definition.yml b/course-definition.yml index 1efa96d..2408d70 100644 --- a/course-definition.yml +++ b/course-definition.yml @@ -552,7 +552,7 @@ stages: - `Content-Length` header set to the size of the file, in bytes. - Response body set to the file contents. ``` - HTTP/1.1 200 OK\r\nContent-Type: application/octet-stream\r\nContent-Length: 14\r\n\r\nHello, World! + HTTP/1.1 200 OK\r\nContent-Type: application/octet-stream\r\nContent-Length: 13\r\n\r\nHello, World! ``` #### Second request