Skip to content

Commit 6f9223e

Browse files
committed
Renamed test for Maven
1 parent a14b4f6 commit 6f9223e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/test/java/org/java_websocket/issues/AllIssueTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
@RunWith(Suite.class)
3232
@Suite.SuiteClasses({
33-
org.java_websocket.issues.Issue609.class
33+
org.java_websocket.issues.Issue609Test.class
3434
})
3535
/**
3636
* Start all tests for issues

src/test/java/org/java_websocket/issues/Issue609.java renamed to src/test/java/org/java_websocket/issues/Issue609Test.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,13 @@
3838

3939
import static org.junit.Assert.assertTrue;
4040

41-
public class Issue609 {
41+
public class Issue609Test {
4242

4343
CountDownLatch countDownLatch = new CountDownLatch( 1 );
4444

4545
boolean wasOpenClient;
4646
boolean wasOpenServer;
47+
4748
@Test
4849
public void testIssue() throws Exception {
4950
WebSocketServer server = new WebSocketServer( new InetSocketAddress( 8887 ) ) {
@@ -85,7 +86,7 @@ public void onMessage( String message ) {
8586

8687
@Override
8788
public void onClose( int code, String reason, boolean remote ) {
88-
wasOpenClient= isOpen();
89+
wasOpenClient = isOpen();
8990
countDownLatch.countDown();
9091
}
9192

0 commit comments

Comments
 (0)