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

Violette Roche-Montane
11.36.2014 edb7b32eaa2db4a171496d30ed3293bfa06b30c8
opendj-cli/src/test/java/com/forgerock/opendj/cli/UtilsTestCase.java
@@ -29,8 +29,8 @@
public class UtilsTestCase extends CliTestCase {
    @Test(expectedExceptions = CLIException.class)
    public void testInvalidJavaVersion() throws CLIException {
    @Test(expectedExceptions = ClientException.class)
    public void testInvalidJavaVersion() throws ClientException {
        final String original = System.getProperty("java.specification.version");
        System.setProperty("java.specification.version", "1.5");
        try {
@@ -41,7 +41,7 @@
    }
    @Test()
    public void testValidJavaVersion() throws CLIException {
    public void testValidJavaVersion() throws ClientException {
        Utils.checkJavaVersion();
    }
}