diff --git a/spec/ext/obj_spec.rb b/spec/ext/obj_spec.rb index 557dd6f..b3e6a71 100644 --- a/spec/ext/obj_spec.rb +++ b/spec/ext/obj_spec.rb @@ -5,7 +5,7 @@ include V8 describe C::Object do it "has a reference to its calling context" do C::Context.new.open do |cxt| - o = cxt.eval('new Object()'); + o = cxt.eval('new Object()', ''); o.context.should == cxt o.context.should be_eql(cxt) end