Fix InputStreamEchoTest
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
9866a83d24
commit
57d4ffec41
|
@ -30,7 +30,6 @@ import org.eclipse.jetty.websocket.core.Frame;
|
|||
import org.eclipse.jetty.websocket.core.OpCode;
|
||||
import org.junit.jupiter.api.AfterAll;
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -114,7 +113,6 @@ public class InputStreamEchoTest
|
|||
}
|
||||
}
|
||||
|
||||
@Disabled
|
||||
@Test
|
||||
public void testInputStreamParamSocket() throws Exception
|
||||
{
|
||||
|
@ -125,7 +123,7 @@ public class InputStreamEchoTest
|
|||
send.add(CloseStatus.toFrame(CloseStatus.NORMAL));
|
||||
|
||||
List<Frame> expect = new ArrayList<>();
|
||||
expect.add(new Frame(OpCode.TEXT).setPayload("Hello World|Every Person"));
|
||||
expect.add(new Frame(OpCode.TEXT).setPayload("Hello World|Every%20Person"));
|
||||
expect.add(CloseStatus.toFrame(CloseStatus.NORMAL));
|
||||
|
||||
try (Fuzzer session = server.newNetworkFuzzer(requestPath))
|
||||
|
|
Loading…
Reference in New Issue