From 899debbbcc29f4233efceab492789ceff0097b39 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Sat, 05 Oct 2013 17:11:57 +0000
Subject: [PATCH] ReplicationTestCase.java Fixed problem introduced in tests at r9648.
---
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java
index 0b37869..9e92221 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/ReplicationTestCase.java
@@ -1001,7 +1001,7 @@
+ ex.getClass().getName() + " : " + ex.getMessage());
}
- if (replMsg.equals(msgType.getClass()))
+ if (replMsg.getClass().equals(msgType))
{
// Ok, got it, let's return the expected message
return (T) replMsg;
--
Gitblit v1.10.0