From 011833b95b7b17346af9b1cb597cd4c4040b367a Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Thu, 24 Jan 2019 17:11:51 -0800 Subject: [PATCH] fix test fail --- compiler/compiler_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/compiler_test.go b/compiler/compiler_test.go index 5dfefe5..f05aedf 100644 --- a/compiler/compiler_test.go +++ b/compiler/compiler_test.go @@ -697,7 +697,7 @@ func TestCompiler_Compile(t *testing.T) { expect(t, `len([]);`, bytecode( concat( - compiler.MakeInstruction(compiler.OpGetBuiltin, 1), + compiler.MakeInstruction(compiler.OpGetBuiltin, 3), compiler.MakeInstruction(compiler.OpArray, 0), compiler.MakeInstruction(compiler.OpCall, 1), compiler.MakeInstruction(compiler.OpPop)), @@ -710,7 +710,7 @@ func TestCompiler_Compile(t *testing.T) { compiler.MakeInstruction(compiler.OpPop)), objectsArray( compiledFunction(0, 0, - compiler.MakeInstruction(compiler.OpGetBuiltin, 1), + compiler.MakeInstruction(compiler.OpGetBuiltin, 3), compiler.MakeInstruction(compiler.OpArray, 0), compiler.MakeInstruction(compiler.OpCall, 1), compiler.MakeInstruction(compiler.OpReturnValue, 1)))))