Skip to content

Commit

Permalink
version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus7 committed Oct 6, 2016
1 parent f373e8b commit 89554a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -19,7 +19,7 @@

<groupId>com.jfastnet</groupId>
<artifactId>jfastnet</artifactId>
<version>0.2.5-SNAPSHOT</version>
<version>0.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>jfastnet</name>
Expand Down
Expand Up @@ -6,16 +6,16 @@
import com.jfastnet.messages.Message;
import com.jfastnet.util.NullsafeHashMap;
import lombok.extern.slf4j.Slf4j;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;

import org.junit.Test;

import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.atomic.AtomicInteger;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;

/** @author Klaus Pfeiffer - klaus@allpiper.com */
@Slf4j
public class StackedMessageProcessorTest extends AbstractTest {
Expand Down Expand Up @@ -141,7 +141,7 @@ public void testStackingWithUnstackables() {
}
server.send(new StackableMsg2());

int timeoutInSeconds = 10;
int timeoutInSeconds = 15;
waitForCondition("Not all messages received.", timeoutInSeconds,
() -> closeMsgReceived.get() == clients.size(),
() -> "Received close messages: " + closeMsgReceived);
Expand Down

0 comments on commit 89554a4

Please sign in to comment.