mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/tests/unit-tests-testng/src/org/opends/sdk/schema/CaseIgnoreIA5EqualityMatchingRuleTest.java
@@ -38,8 +38,7 @@
/**
 * Test the CaseExactIA5EqualityMatchingRule.
 */
public class CaseIgnoreIA5EqualityMatchingRuleTest extends
    MatchingRuleTest
public class CaseIgnoreIA5EqualityMatchingRuleTest extends MatchingRuleTest
{
  /**
@@ -61,8 +60,7 @@
  @DataProvider(name = "matchingrules")
  public Object[][] createMatchingRuleTest()
  {
    return new Object[][] {
        { "12345678", "12345678", ConditionResult.TRUE },
    return new Object[][] { { "12345678", "12345678", ConditionResult.TRUE },
        { "ABC45678", "ABC45678", ConditionResult.TRUE },
        { "ABC45678", "abc45678", ConditionResult.TRUE }, };
  }
@@ -75,8 +73,7 @@
  @Override
  protected MatchingRule getRule()
  {
    return Schema.getCoreSchema().getMatchingRule(
        EMR_CASE_IGNORE_IA5_OID);
    return Schema.getCoreSchema().getMatchingRule(EMR_CASE_IGNORE_IA5_OID);
  }
}