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

el_kaboing
17.48.2006 8433f75014868727a42b117b9eb869e6dffd1522
Fixed Issue 817.
Replaced the call to assert by the static method, org.testng.Assert.assertEquals(int,int).
1 files modified
3 ■■■■ changed files
opends/tests/integration-tests-testng/src/server/org/opends/server/OpenDSIntegrationTests.java 3 ●●●● patch | view | raw | blame | history
opends/tests/integration-tests-testng/src/server/org/opends/server/OpenDSIntegrationTests.java
@@ -30,6 +30,7 @@
import org.opends.server.OpenDSMgr;
import org.opends.server.tools.StopDS;
import org.opends.server.tools.LDAPSearch;
import org.testng.Assert.*;
/**
 * This class defines an abstract test case that should be subclassed by all
@@ -96,7 +97,7 @@
      if (retCode == 999)
    System.out.println("OpenDS could not restart");
      // throw a fail in the testng framework
      assert retCode==expCode;
      org.testng.Assert.assertEquals(retCode,expCode);
    }
  }