aboutsummaryrefslogtreecommitdiffstats
path: root/config-lib/src/test/java/com/yahoo/config/IntegerNodeTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-lib/src/test/java/com/yahoo/config/IntegerNodeTest.java')
-rw-r--r--config-lib/src/test/java/com/yahoo/config/IntegerNodeTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/config-lib/src/test/java/com/yahoo/config/IntegerNodeTest.java b/config-lib/src/test/java/com/yahoo/config/IntegerNodeTest.java
index a195a5f65fb..4081192d2e8 100644
--- a/config-lib/src/test/java/com/yahoo/config/IntegerNodeTest.java
+++ b/config-lib/src/test/java/com/yahoo/config/IntegerNodeTest.java
@@ -9,9 +9,9 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
/**
* @author Ulf Lilleengen
- * @since 5.1
*/
public class IntegerNodeTest {
+
@Test
void testSetValue() {
IntegerNode n = new IntegerNode();
@@ -19,4 +19,5 @@ public class IntegerNodeTest {
assertTrue(n.setValue("10"));
assertEquals(10, n.value().intValue());
}
+
}