diff --git a/lua_test.go b/lua_test.go index 054125d..744c2f8 100644 --- a/lua_test.go +++ b/lua_test.go @@ -6,7 +6,9 @@ import ( ) func TestLua_Func(t *testing.T) { - b := New() + b := New(Options{ + SkipOpenLibs: true, + }) b.Func("sum", func(c *Context) error { t := c.Top()