Skip to content

Commit 564e710

Browse files
committed
toString behaves differently for isolates, we should be using asString in the relevant tests anyway
1 parent ed367e0 commit 564e710

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.test.integration/src/com/oracle/graal/python/test/integration/interop

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test.integration/src/com/oracle/graal/python/test/integration/interop/JavaInteropTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ public void accessSuitePy() throws IOException {
446446
}
447447
}
448448
assertNotNull("Dacapo found", dacapo);
449-
assertEquals("'e39957904b7e79caf4fa54f30e8e4ee74d4e9e37'", dacapo.getHashValue("sha1").toString());
449+
assertEquals("e39957904b7e79caf4fa54f30e8e4ee74d4e9e37", dacapo.getHashValue("sha1").asString());
450450
}
451451

452452
public class AForeignExecutable implements ProxyExecutable {

0 commit comments

Comments
 (0)