We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7789e9 commit ac88e5aCopy full SHA for ac88e5a
src/test/java/io/fusionauth/http/MultipartTest.java
@@ -114,8 +114,8 @@ public void post_server_configuration_fileTooBig(String scheme) throws Exception
114
withScheme(scheme)
115
.withFileSize(10 * 1024 * 1024) // 10 Mb
116
.withConfiguration(new MultipartConfiguration().withFileUploadPolicy(MultipartFileUploadPolicy.Allow)
117
- // Max file size is 5Mb
118
- .withMaxFileSize(5 * 1024 * 1024)
+ // Max file size is 2Mb
+ .withMaxFileSize(2 * 1024 * 1024)
119
// Max request size is 15 Mb
120
.withMaxRequestSize(15 * 1024 * 1024))
121
.expectResponse("""
0 commit comments