From 92f8c1cfc99740135144779b83b8f406773f17e2 Mon Sep 17 00:00:00 2001 From: argonui <92067588+argonui@users.noreply.github.com> Date: Mon, 3 Aug 2026 21:37:08 -0500 Subject: [PATCH] fix: e2e_test.go uses new 3-value UnbundleAll signature (post-#118) #119's normalizeBundledLua called bundler.UnbundleAll with two return values, but #118 changed it to three. Rebasing #119 onto main merged textually but did not compile. Discard the new root-name return at the call site. Co-Authored-By: Claude Opus 5 --- tests/e2e_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e_test.go b/tests/e2e_test.go index c352900..d0f0576 100644 --- a/tests/e2e_test.go +++ b/tests/e2e_test.go @@ -154,7 +154,7 @@ func normalizeBundledLua(v interface{}) { for k, val := range t { if k == "LuaScript" { if s, ok := val.(string); ok && bundler.IsBundled(s) { - if modules, err := bundler.UnbundleAll(s); err == nil { + if modules, _, err := bundler.UnbundleAll(s); err == nil { t[k] = mapOfKeys(modules) continue }