summaryrefslogtreecommitdiffhomepage
path: root/cmd/testwrapper/testwrapper.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/testwrapper/testwrapper.go')
-rw-r--r--cmd/testwrapper/testwrapper.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/testwrapper/testwrapper.go b/cmd/testwrapper/testwrapper.go
index 9b8d7a7c1..75db00736 100644
--- a/cmd/testwrapper/testwrapper.go
+++ b/cmd/testwrapper/testwrapper.go
@@ -16,6 +16,7 @@ import (
"fmt"
"io"
"log"
+ "maps"
"os"
"os/exec"
"slices"
@@ -29,7 +30,6 @@ import (
"github.com/dave/courtney/tester"
"github.com/dave/patsy"
"github.com/dave/patsy/vos"
- xmaps "golang.org/x/exp/maps"
"tailscale.com/cmd/testwrapper/flakytest"
)
@@ -343,7 +343,7 @@ func main() {
if len(toRetry) == 0 {
continue
}
- pkgs := xmaps.Keys(toRetry)
+ pkgs := slices.Collect(maps.Keys(toRetry))
sort.Strings(pkgs)
nextRun := &nextRun{
attempt: thisRun.attempt + 1,