From f78f372a776579b6c2fb0a0bbb77b098a535aa20 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 29 Apr 2016 13:10:39 +0000
Subject: [PATCH] unit tests: removed some additional suppressions (compared to forgerock-build-tools equivalent file)
---
opendj-server-legacy/src/test/java/org/opends/server/replication/ReplicationTestCase.java | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/replication/ReplicationTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/replication/ReplicationTestCase.java
index d3a7130..fe56e5b 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/replication/ReplicationTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/replication/ReplicationTestCase.java
@@ -850,8 +850,10 @@
private static ReplicationMsg waitForSpecificMsgs(Session session, ReplicationBroker broker, Class<?>... msgTypes)
throws Exception
{
- assertTrue(session != null || broker != null, "One of Session or ReplicationBroker parameter must not be null");
- assertTrue(session == null || broker == null, "Only one of Session or ReplicationBroker parameter must not be null");
+ assertTrue(session != null || broker != null,
+ "One of Session or ReplicationBroker parameter must not be null");
+ assertTrue(session == null || broker == null,
+ "Only one of Session or ReplicationBroker parameter must not be null");
List<Class<?>> msgTypes2 = Arrays.asList(msgTypes);
@@ -913,7 +915,8 @@
});
}
- protected void waitConnected(int dsId, int rsId, int rsPort, LDAPReplicationDomain rd, String msg) throws InterruptedException
+ protected void waitConnected(int dsId, int rsId, int rsPort, LDAPReplicationDomain rd, String msg)
+ throws InterruptedException
{
final int secTimeout = 30;
int nSec = 0;
--
Gitblit v1.10.0