From 1eee17dc4e796c2fe60e8f9e82b66c00610adc31 Mon Sep 17 00:00:00 2001 From: apocelipes Date: Fri, 22 Mar 2024 09:04:08 +0000 Subject: path/filepath: use slices to simplify the test code Change-Id: I020ca2ed8a6af60977f2c492cd742f824906d4ec GitHub-Last-Rev: b27fda463058e86eafbe5bd10e5c99e10dd609a8 GitHub-Pull-Request: golang/go#66462 Reviewed-on: https://go-review.googlesource.com/c/go/+/573715 Reviewed-by: David Chase Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI --- src/path/filepath/path_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/path/filepath/path_test.go') diff --git a/src/path/filepath/path_test.go b/src/path/filepath/path_test.go index 8a66538f6a..b24f39c5aa 100644 --- a/src/path/filepath/path_test.go +++ b/src/path/filepath/path_test.go @@ -14,7 +14,6 @@ import ( "reflect" "runtime" "slices" - "sort" "strings" "syscall" "testing" @@ -1790,7 +1789,7 @@ func testWalkSymlink(t *testing.T, mklink func(target, link string) error) { if err != nil { t.Fatal(err) } - sort.Strings(visited) + slices.Sort(visited) want := []string{".", "link"} if fmt.Sprintf("%q", visited) != fmt.Sprintf("%q", want) { t.Errorf("unexpected paths visited %q, want %q", visited, want) -- cgit v1.3-5-g9baa