From 26d8aa390d05b5a14a63919687f624a0a631b717 Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Wed, 08 Jul 2026 17:18:18 +0000
Subject: [PATCH] [#709] Enable disabled and invisible tests across the sibling modules (#707)
---
opendj-config/src/test/java/org/forgerock/opendj/config/StringPropertyDefinitionTest.java | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/opendj-config/src/test/java/org/forgerock/opendj/config/StringPropertyDefinitionTest.java b/opendj-config/src/test/java/org/forgerock/opendj/config/StringPropertyDefinitionTest.java
index d9793db..7c0c4f8 100644
--- a/opendj-config/src/test/java/org/forgerock/opendj/config/StringPropertyDefinitionTest.java
+++ b/opendj-config/src/test/java/org/forgerock/opendj/config/StringPropertyDefinitionTest.java
@@ -12,6 +12,7 @@
* information: "Portions Copyright [year] [name of copyright owner]".
*
* Copyright 2008 Sun Microsystems, Inc.
+ * Portions Copyright 2024-2026 3A Systems, LLC
*/
package org.forgerock.opendj.config;
@@ -35,8 +36,7 @@
d.validateValue("abc");
}
- // TODO : I18N problem
- @Test(enabled = false, expectedExceptions = PropertyException.class)
+ @Test(expectedExceptions = PropertyException.class)
public void testValidateValuePatternDoesNotMatch() {
StringPropertyDefinition d = getDefinition(true, "^[a-z]+$");
d.validateValue("abc123");
@@ -48,8 +48,7 @@
assertEquals(d.decodeValue("abc"), "abc");
}
- // TODO : I18N problem
- @Test(enabled = false, expectedExceptions = PropertyException.class)
+ @Test(expectedExceptions = PropertyException.class)
public void testDecodeValuePatternDoesNotMatch() {
StringPropertyDefinition d = getDefinition(true, "^[a-z]+$");
d.decodeValue("abc123");
--
Gitblit v1.10.0