Skip to content

Commit

Permalink
Merge branch 'jetty-9.2.x' into jetty-9.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed Aug 16, 2016
2 parents 4527ba1 + 526d141 commit 988e344
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -18,6 +18,8 @@

package org.eclipse.jetty.websocket.jsr356;

import static org.hamcrest.Matchers.instanceOf;

import java.io.IOException;
import java.net.URI;
import java.nio.ByteBuffer;
Expand All @@ -43,10 +45,9 @@
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

import static org.hamcrest.Matchers.instanceOf;

/**
* This class tests receiving of messages by different types of {@link MessageHandler}
*/
Expand Down Expand Up @@ -109,6 +110,7 @@ public void configureTest() {
* @throws Exception on exception occur
*/
@Test
@Ignore("flappy test")
public void testWholeTextMessage() throws Exception {
final TestEndpoint echoer = new TestEndpoint(new WholeStringCaptureHandler());
Assert.assertThat(echoer, instanceOf(javax.websocket.Endpoint.class));
Expand Down

0 comments on commit 988e344

Please sign in to comment.