From 3673c2d2822245fa45ee5045431f2aac69cd2a79 Mon Sep 17 00:00:00 2001
From: davidely <davidely@localhost>
Date: Fri, 16 Mar 2007 21:28:27 +0000
Subject: [PATCH] System.err contents were not being output on a test failure due to a copy and paste bug.  This is now fixed.  I've also backed out revision 1432 since we now get the same info plus a little more.

---
 opends/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/AciTests.java |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/AciTests.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/AciTests.java
index 198b573..3437f32 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/AciTests.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/AciTests.java
@@ -1442,9 +1442,7 @@
       diffFromExpected = diffLdif(params._expectedResultsLdif, searchResults);
 
       // Ignoring whitespace the diff should be empty.
-      Assert.assertTrue(diffFromExpected.replaceAll("\\s", "").length() == 0,
-                        "Difference from expected results:" + EOL +
-                        diffFromExpected);
+      Assert.assertTrue(diffFromExpected.replaceAll("\\s", "").length() == 0);
     } catch (Throwable e) {
         System.err.println(
               "Started with dit:\n" +

--
Gitblit v1.10.0