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

Jean-Noel Rouvignac
26.09.2013 21948153809d5f68b7c0f8f2480a7151355ca096
OPENDJ-816 (CR-1460) ssf bug in ACI evaluation?

Fixing nightly build.
1 files modified
9 ■■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/TLSByteChannelTestCase.java 9 ●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/extensions/TLSByteChannelTestCase.java
@@ -44,14 +44,18 @@
import javax.xml.xpath.XPathExpressionException;
import javax.xml.xpath.XPathFactory;
import org.opends.server.DirectoryServerTestCase;
import org.opends.server.util.StaticUtils;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
/**
 * Tests for {@link TLSByteChannel} class.
 */
@Test(groups = { "slow" })
public class TLSByteChannelTestCase
public class TLSByteChannelTestCase extends DirectoryServerTestCase
{
  /**
@@ -511,7 +515,8 @@
  @Test
  public void checkNoUnknownOverlappingCiphers()
  {
    List<String> ciphers = new ArrayList(TLSByteChannel.CIPHER_MAP.keySet());
    List<String> ciphers =
        new ArrayList<String>(TLSByteChannel.CIPHER_MAP.keySet());
    for (int i = 0; i < ciphers.size(); i++)
    {
      for (int j = 0; j < i; j++)