Skip to content

Commit faee4ab

Browse files
author
Mat Ryer
committed
tiny tweak
1 parent 279f9fd commit faee4ab

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

walker_test.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func TestPowerWalk(t *testing.T) {
146146
}
147147

148148
/*
149-
This test is commented out as it takes an extremely long time.
149+
// This test is commented out as it takes an extremely long time.
150150
func TestPowerWalkMassive(t *testing.T) {
151151
152152
// max concurrency out
@@ -172,16 +172,13 @@ func TestPowerWalkMassive(t *testing.T) {
172172
173173
// simulate some processing
174174
time.Sleep(time.Duration(rand.Int31n(1000)) * time.Millisecond)
175-
fmt.Printf("\r%d of %d", count, total)
176175
os.Stdout.Sync()
177176
}
178177
return nil
179178
}
180179
181180
assert.NoError(t, Walk(testFiles, walkFunc))
182181
183-
fmt.Println("")
184-
185182
// make sure everything was seen
186183
if assert.NotEqual(t, len(seen), 0, "Walker should visit at least one file.") {
187184
for k, v := range seen {

0 commit comments

Comments
 (0)