File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
graal-nodejs/test/graal/unit Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ describe('Buffer.utf8Write', function() {
9393 it ( 'length is zero' , function ( ) {
9494 assert . strictEqual ( Buffer . alloc ( 0 ) . utf8Write . length , 0 ) ;
9595 } ) ;
96- if ( typeof java !== undefined ) {
96+ if ( typeof java !== " undefined" ) {
9797 it ( 'should accept interop buffer' , function ( ) {
9898 var byteLength = 8 ;
9999 var offset = 4 ;
@@ -159,7 +159,7 @@ describe('Buffer.utf8Slice', function() {
159159 it ( 'length is zero' , function ( ) {
160160 assert . strictEqual ( Buffer . alloc ( 0 ) . utf8Slice . length , 0 ) ;
161161 } ) ;
162- if ( typeof java !== undefined ) {
162+ if ( typeof java !== " undefined" ) {
163163 it ( 'should accept interop buffer' , function ( ) {
164164 var javaBuffer = java . nio . ByteBuffer . allocate ( 8 ) ;
165165 javaBuffer . put ( 3 , 'f' . codePointAt ( 0 ) ) ;
You can’t perform that action at this time.
0 commit comments