Skip to content

Commit 72b7faf

Browse files
author
Adam Hrbac
committed
Improve test
1 parent 964ce54 commit 72b7faf

File tree

1 file changed

+2
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/builtins/modules

1 file changed

+2
-1
lines changed

graalpython/com.oracle.graal.python.test/src/com/oracle/graal/python/builtins/modules/HamtTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ public void close() {
6464

6565
@Test
6666
public void testHamtConstructed() {
67-
new Hamt();
67+
Hamt hamt = new Hamt();
68+
assertEquals("null\n", hamt.dump());
6869
}
6970

7071
@Test

0 commit comments

Comments
 (0)