@@ -274,37 +274,34 @@ func TestCache(t *testing.T) {
274
274
},
275
275
}
276
276
277
- var (
278
- out []byte
279
- err error
280
- )
277
+ var err error
281
278
282
279
test .WriteConfig (t , configPath , cfg )
283
280
_ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
284
281
as .NoError (err )
285
282
assertStats (t , as , 32 , 32 , 32 , 0 )
286
283
287
- out , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
284
+ _ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
288
285
as .NoError (err )
289
- assertFormatted (t , as , out , 0 )
286
+ assertStats (t , as , 32 , 0 , 0 , 0 )
290
287
291
288
// clear cache
292
289
_ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir , "-c" )
293
290
as .NoError (err )
294
291
assertStats (t , as , 32 , 32 , 32 , 0 )
295
292
296
- out , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
293
+ _ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
297
294
as .NoError (err )
298
- assertFormatted (t , as , out , 0 )
295
+ assertStats (t , as , 32 , 0 , 0 , 0 )
299
296
300
297
// clear cache
301
298
_ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir , "-c" )
302
299
as .NoError (err )
303
300
assertStats (t , as , 32 , 32 , 32 , 0 )
304
301
305
- out , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
302
+ _ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir )
306
303
as .NoError (err )
307
- assertFormatted (t , as , out , 0 )
304
+ assertStats (t , as , 32 , 0 , 0 , 0 )
308
305
309
306
// no cache
310
307
_ , err = cmd (t , "--config-file" , configPath , "--tree-root" , tempDir , "--no-cache" )
@@ -516,10 +513,10 @@ func TestGitWorktree(t *testing.T) {
516
513
wt , err := repo .Worktree ()
517
514
as .NoError (err , "failed to get git worktree" )
518
515
519
- run := func (traversed int , emitted int , matched int , formatted int ) {
520
- out , err := cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
516
+ run := func (traversed int32 , emitted int32 , matched int32 , formatted int32 ) {
517
+ _ , err := cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
521
518
as .NoError (err )
522
- assertFormatted (t , as , out , formatted )
519
+ assertStats (t , as , traversed , emitted , matched , formatted )
523
520
}
524
521
525
522
// run before adding anything to the worktree
@@ -532,11 +529,11 @@ func TestGitWorktree(t *testing.T) {
532
529
533
530
// remove python directory from the worktree
534
531
as .NoError (wt .RemoveGlob ("python/*" ))
535
- run (28 , 28 , 28 , 0 )
532
+ run (29 , 29 , 29 , 0 )
536
533
537
534
// remove nixpkgs.toml from the filesystem but leave it in the index
538
535
as .NoError (os .Remove (filepath .Join (tempDir , "nixpkgs.toml" )))
539
- run (27 , 27 , 27 , 0 )
536
+ run (28 , 28 , 28 , 0 )
540
537
541
538
// walk with filesystem instead of git
542
539
_ , err = cmd (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir , "--walk" , "filesystem" )
0 commit comments