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

neil_a_wilson
22.58.2006 2a5baa1b098d56867de7737577da6ade195af91d
Fix a typo in the group definitions for the TypesTestCase superclass.
1 files modified
6 ■■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/types/TypesTestCase.java 6 ●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/types/TypesTestCase.java
@@ -30,9 +30,9 @@
import org.testng.annotations.Test;
/**
 * An abstract class that all types  unit test should extend.
 * An abstract class that all types unit tests should extend.
 */
@Test(groups = { "precommit, types" })
public abstract class TypesTestCase extends DirectoryServerTestCase
@Test(groups = { "precommit", "types" })
public abstract class TypesTestCase extends DirectoryServerTestCase
{}