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 e9cbcba commit acf6973Copy full SHA for acf6973
flow/src/test/java/software/amazon/eventstream/MessageDecoderTest.java
@@ -14,16 +14,18 @@
14
import java.util.stream.IntStream;
15
import org.hamcrest.Matchers;
16
import org.junit.Assert;
17
+import org.junit.Ignore;
18
import org.junit.Test;
19
20
+@Ignore
21
public class MessageDecoderTest {
22
long SEED = 8912374098123423L;
23
24
@Test
25
public void testDecoder() throws Exception {
26
TestUtils utils = new TestUtils(SEED);
27
Random rand = new Random(SEED);
- List<Message> expected = IntStream.range(0, 100_000)
28
+ List<Message> expected = IntStream.range(0, 10_000)
29
.mapToObj(x -> utils.randomMessage())
30
.collect(Collectors.toList());
31
ByteArrayOutputStream baos = new ByteArrayOutputStream();
0 commit comments