From 2f600bea194b053b310a181857c5d801471fe7be Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Wed, 12 Jun 2019 14:39:04 +0200 Subject: Fix uploading of attachments to posts. The field needs to be named `media`, and we also need to handle the result of the operation. This refactors the result handling into a separate private function. --- tests/zotapi.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/zotapi.rs') diff --git a/tests/zotapi.rs b/tests/zotapi.rs index 9ad5cf9..1a81dc3 100644 --- a/tests/zotapi.rs +++ b/tests/zotapi.rs @@ -114,7 +114,7 @@ fn upload_item_with_media_file() { "Content-Disposition: form-data; name=\"title\"\r\n" + "\r\nA title\r\n" + "--.+\r\n" + - "Content-Disposition: form-data; name=\"files\"; filename=\"testfile.txt\"\r\n" + + "Content-Disposition: form-data; name=\"media\"; filename=\"testfile.txt\"\r\n" + "Content-Type: text/plain\r\n" + "\r\ntestfile contents\n" + "\r\n--.+--\r\n")) @@ -146,11 +146,11 @@ fn upload_item_with_two_files() { "Content-Disposition: form-data; name=\"title\"\r\n" + "\r\nA title\r\n" + "--.+\r\n" + - "Content-Disposition: form-data; name=\"files\"; filename=\"testfile.txt\"\r\n" + + "Content-Disposition: form-data; name=\"media\"; filename=\"testfile.txt\"\r\n" + "Content-Type: text/plain\r\n" + "\r\ntestfile contents\n" + "\r\n--.+\r\n" + - "Content-Disposition: form-data; name=\"files\"; filename=\"testfile.txt\"\r\n" + + "Content-Disposition: form-data; name=\"media\"; filename=\"testfile.txt\"\r\n" + "Content-Type: text/plain\r\n" + "\r\ntestfile contents\n" + "\r\n--.+--\r\n")) -- cgit v1.2.3