From da0b2a8b8793a0fd7b36658507bd268bb962d95d Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 26 Oct 2006 22:04:24 +0000
Subject: [PATCH] Update a test case for the numeric string equality matching rule to enable a test for values containing spaces.  The test case previously assumed that spaces were significant and therefore had been failing, but spaces are not significant in numeric string values and therefore the schema code was correct.

---
 opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/schema/NumericStringEqualityMatchingRuleTest.java |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/schema/NumericStringEqualityMatchingRuleTest.java b/opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/schema/NumericStringEqualityMatchingRuleTest.java
index 2ce3bee..651f512 100644
--- a/opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/schema/NumericStringEqualityMatchingRuleTest.java
+++ b/opendj-sdk/opends/tests/unit-tests-testng/src/server/org/opends/server/schema/NumericStringEqualityMatchingRuleTest.java
@@ -58,11 +58,8 @@
     return new Object[][] {
         {"1234567890", "1234567890", true },
         {" 1234567890  ", "1234567890", true },
-        /* disabled because it is currently failing 
-         * see issue : 707
-        {" 123   4567890  ", "1234567890", false },
-        */
-        {"1234",       "5678",       false }, 
+        {" 123   4567890  ", "1234567890", true },
+        {"1234",       "5678",       false },
     };
 
   }

--
Gitblit v1.10.0