Skip to content

Commit af1369e

Browse files
committed
fix Node.js interop.js test
1 parent 00f5260 commit af1369e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

graal-nodejs/test/graal/unit/interop.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ describe('Polyglot', function () {
6060
assert.ifError(error);
6161
assert.deepEqual(data, [
6262
[
63+
'java.lang.System.out.propertyIsEnumerable',
64+
'',
6365
'java.lang.System.out.print',
6466
'java.lang.System.out.printf',
6567
'java.lang.System.out.println'

graal-nodejs/test/graal/unit/other.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe('Other', function () {
5757
var point = new Point();
5858
// just make sure that it does not throw an error
5959
util.inspect(Point);
60-
assert.match(util.inspect(point), /Point/);
60+
assert.match(util.inspect(point), /getX/);
6161
});
6262
}
6363
it('should not regress in ExecuteNativeFunctionNode', function () {

0 commit comments

Comments
 (0)