File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
1010github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
1111github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I =
1212github.com/pkg/errors v0.8.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
13+ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4 =
14+ github.com/pkg/errors v0.9.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
1315github.com/pkg/sftp v1.10.1 /go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI =
1416github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
1517github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
Original file line number Diff line number Diff line change 88 "strings"
99 "time"
1010
11- "github.com/pkg/errors"
1211 "github.com/spf13/afero"
1312)
1413
Original file line number Diff line number Diff line change @@ -158,9 +158,8 @@ func (w *WalkSuiteAll) TestPassesQuerySpecification() {
158158 symlink := w .root .Join ("symlink" )
159159 require .NoError (w .T (), symlink .Symlink (file ))
160160
161- stat , lstatCalled , err : = symlink .Lstat ()
161+ stat , err = symlink .Lstat ()
162162 require .NoError (w .T (), err )
163- require .True (w .T (), lstatCalled )
164163
165164 w .walk .Opts .VisitSymlinks = false
166165 passes , err = w .walk .passesQuerySpecification (stat )
You can’t perform that action at this time.
0 commit comments