fix linter

This commit is contained in:
2025-08-08 12:30:32 +02:00
parent fd17211a53
commit 6094f480f1
18 changed files with 20 additions and 21 deletions

View File

@@ -1,16 +1,15 @@
package main
import (
"os"
"testing"
"github.com/rogpeppe/go-internal/testscript"
)
func TestMain(m *testing.M) {
os.Exit(testscript.RunMain(m, map[string]func() int{
"testrpn": Main,
}))
testscript.Main(m, map[string]func(){
"rpn": main,
})
}
func TestRpn(t *testing.T) {