Skip to content

Commit c2353eb

Browse files
Manu ChaudharyManu Chaudhary
authored andcommitted
Fix upload test case
1 parent d9f7914 commit c2353eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

imagekit-sdk/src/test/java/io/imagekit/sdk/tasks/MultipartBuilderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,15 +159,15 @@ public void build_test_with_FileCreateRequest_more_params() throws Exception{
159159
"Content-Disposition: form-data; name=\"isPrivateFile\"\r\n" +
160160
"Content-Length: 4\r\n\r\n" +
161161
"true\r\n" +
162-
"--"+boundary+"--\r\n" +
162+
"--"+boundary+"\r\n" +
163163
"Content-Disposition: form-data; name=\"customCoordinates\"\r\n" +
164164
"Content-Length: 13\r\n\r\n" +
165165
"10,10,100,100\r\n" +
166166
"--"+boundary+"\r\n" +
167167
"Content-Disposition: form-data; name=\"responseFields\"\r\n" +
168168
"Content-Length: 8\r\n\r\n" +
169169
"metadata\r\n" +
170-
"--"+boundary+"\r\n";
170+
"--"+boundary+"--\r\n";
171171

172172

173173
// It's capture multipart request

0 commit comments

Comments
 (0)