Skip to content

Commit 1734bcf

Browse files
committed
fix: remove assertFormatted, use assertStats instead
Signed-off-by: Brian McGee <[email protected]>
1 parent d4c115e commit 1734bcf

File tree

2 files changed

+12
-20
lines changed

2 files changed

+12
-20
lines changed

cli/format_test.go

+12-15
Original file line numberDiff line numberDiff line change
@@ -274,37 +274,34 @@ func TestCache(t *testing.T) {
274274
},
275275
}
276276

277-
var (
278-
out []byte
279-
err error
280-
)
277+
var err error
281278

282279
test.WriteConfig(t, configPath, cfg)
283280
_, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir)
284281
as.NoError(err)
285282
assertStats(t, as, 32, 32, 32, 0)
286283

287-
out, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir)
284+
_, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir)
288285
as.NoError(err)
289-
assertFormatted(t, as, out, 0)
286+
assertStats(t, as, 32, 0, 0, 0)
290287

291288
// clear cache
292289
_, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir, "-c")
293290
as.NoError(err)
294291
assertStats(t, as, 32, 32, 32, 0)
295292

296-
out, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir)
293+
_, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir)
297294
as.NoError(err)
298-
assertFormatted(t, as, out, 0)
295+
assertStats(t, as, 32, 0, 0, 0)
299296

300297
// clear cache
301298
_, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir, "-c")
302299
as.NoError(err)
303300
assertStats(t, as, 32, 32, 32, 0)
304301

305-
out, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir)
302+
_, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir)
306303
as.NoError(err)
307-
assertFormatted(t, as, out, 0)
304+
assertStats(t, as, 32, 0, 0, 0)
308305

309306
// no cache
310307
_, err = cmd(t, "--config-file", configPath, "--tree-root", tempDir, "--no-cache")
@@ -516,10 +513,10 @@ func TestGitWorktree(t *testing.T) {
516513
wt, err := repo.Worktree()
517514
as.NoError(err, "failed to get git worktree")
518515

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)
521518
as.NoError(err)
522-
assertFormatted(t, as, out, formatted)
519+
assertStats(t, as, traversed, emitted, matched, formatted)
523520
}
524521

525522
// run before adding anything to the worktree
@@ -532,11 +529,11 @@ func TestGitWorktree(t *testing.T) {
532529

533530
// remove python directory from the worktree
534531
as.NoError(wt.RemoveGlob("python/*"))
535-
run(28, 28, 28, 0)
532+
run(29, 29, 29, 0)
536533

537534
// remove nixpkgs.toml from the filesystem but leave it in the index
538535
as.NoError(os.Remove(filepath.Join(tempDir, "nixpkgs.toml")))
539-
run(27, 27, 27, 0)
536+
run(28, 28, 28, 0)
540537

541538
// walk with filesystem instead of git
542539
_, err = cmd(t, "-c", "--config-file", configPath, "--tree-root", tempDir, "--walk", "filesystem")

cli/helpers_test.go

-5
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,3 @@ func assertStats(t *testing.T, as *require.Assertions, traversed int32, emitted
8383
as.Equal(matched, stats.Value(stats.Matched), "stats.matched")
8484
as.Equal(formatted, stats.Value(stats.Formatted), "stats.formatted")
8585
}
86-
87-
func assertFormatted(t *testing.T, as *require.Assertions, output []byte, count int) {
88-
t.Helper()
89-
as.Contains(string(output), fmt.Sprintf("(%d changed)", count))
90-
}

0 commit comments

Comments
 (0)