Bump github.com/rogpeppe/go-internal from 1.13.1 to 1.14.1 (#29)

This commit is contained in:
dependabot[bot]
2025-04-25 14:13:34 +02:00
committed by GitHub
parent e549ae8ed5
commit edc08f12a7
3 changed files with 9 additions and 10 deletions

View File

@@ -17,16 +17,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
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{
"anydb": Main,
}))
testscript.Main(m, map[string]func(){
"anydb": main,
})
}
func TestAnydb(t *testing.T) {