diff --git a/tests/run.scm b/tests/run.scm
index 347c18f..e12e09b 100644
a
|
b
|
|
149 | 149 | |
150 | 150 | (test-group "alist form data body with string port" |
151 | 151 | (let* ((string-port (open-input-string "the file's contents")) |
152 | | (log (with-server-response |
| 152 | (log (with-server-responses |
153 | 153 | (lambda () |
154 | 154 | (with-input-from-request |
155 | 155 | "http://example.com" |
… |
… |
|
158 | 158 | filename: "str") |
159 | 159 | ("more" . stuff)) |
160 | 160 | read-string)) |
| 161 | (conc "HTTP/1.0 301 Moved Permanently\r\n" |
| 162 | "Location: http://example.org/different/path\r\n" |
| 163 | "Content-Length: 8\r\n\r\nIgnored!") |
161 | 164 | "HTTP/1.0 200 OK\r\n\r\n")) |
162 | 165 | (req (log-request log)) |
163 | 166 | (h (request-headers req)) |