Skip to content

Commit ac88e5a

Browse files
committed
Working
1 parent f7789e9 commit ac88e5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/fusionauth/http/MultipartTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ public void post_server_configuration_fileTooBig(String scheme) throws Exception
114114
withScheme(scheme)
115115
.withFileSize(10 * 1024 * 1024) // 10 Mb
116116
.withConfiguration(new MultipartConfiguration().withFileUploadPolicy(MultipartFileUploadPolicy.Allow)
117-
// Max file size is 5Mb
118-
.withMaxFileSize(5 * 1024 * 1024)
117+
// Max file size is 2Mb
118+
.withMaxFileSize(2 * 1024 * 1024)
119119
// Max request size is 15 Mb
120120
.withMaxRequestSize(15 * 1024 * 1024))
121121
.expectResponse("""

0 commit comments

Comments
 (0)