Skip to content

Commit 1f5f9ad

Browse files
committed
Fix flaky tests
1 parent 5fed8ca commit 1f5f9ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/BlockingAsyncRequestResponseBodyResourceManagementTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void verifyConnection(Consumer<ResponseInputStream<StreamingOutputOperationRespo
138138

139139
private static class Server extends ChannelInitializer<Channel> {
140140
private static final byte[] CONTENT = ("{ "
141-
+ "\"foo\": " + RandomStringUtils.randomAscii(1024)
141+
+ "\"foo\": " + RandomStringUtils.randomAscii(1024 * 1024 * 10)
142142
+ "}").getBytes(StandardCharsets.UTF_8);
143143
private ServerBootstrap bootstrap;
144144
private ServerSocketChannel serverSock;

0 commit comments

Comments
 (0)