Updated one-dimensional array test case

This commit is contained in:
WillRabalais04
2023-06-05 18:54:51 +02:00
committed by GitHub
parent 4b72e1be62
commit 757a250aa3

View File

@@ -48,7 +48,7 @@ public class VariableNodeTests {
public void describeSimpleArray() {
Value value = buildMockValue("instance of int[5] (id=998)");
VariableNode node = new VariableNode("test", "int[]", value);
Assert.assertEquals(node.getStringValue(), "instance of int[5]");
Assert.assertEquals(node.getStringValue(), "instance of int[5] (id=998)");
}
@Test