fix error text test

This commit is contained in:
Sky Johnson 2025-05-22 11:39:43 -05:00
parent 3817f80dc4
commit 83134f3dbc

View File

@ -13,7 +13,7 @@ func TestLuaError(t *testing.T) {
Message: "test error",
}
expected := "lua error (code=123): test error"
expected := "test error (code=123)"
if err.Error() != expected {
t.Errorf("Expected error message %q, got %q", expected, err.Error())
}