Skip to content

Commit 20fea9d

Browse files
committed
fix: add additional symlink on Git test
1 parent 5832332 commit 20fea9d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cmd/root_test.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -1399,17 +1399,17 @@ func TestGit(t *testing.T) {
13991399
as.NoError(os.Remove(filepath.Join(tempDir, "nixpkgs.toml")))
14001400

14011401
// walk with filesystem instead of with git
1402-
// the .git folder contains 50 additional files
1402+
// the .git folder contains 51 additional files
14031403
// when added to the 32 we started with (34 minus nixpkgs.toml which we removed from the filesystem), we should
1404-
// traverse 82 files.
1404+
// traverse 83 files.
14051405
treefmt(t,
14061406
withArgs("--walk", "filesystem"),
14071407
withConfig(configPath, cfg),
14081408
withNoError(t),
14091409
withStats(t, map[stats.Type]int{
1410-
stats.Traversed: 82,
1411-
stats.Matched: 82,
1412-
stats.Formatted: 50, // the echo formatter should only be applied to the new files
1410+
stats.Traversed: 83,
1411+
stats.Matched: 83,
1412+
stats.Formatted: 51, // the echo formatter should only be applied to the new files
14131413
stats.Changed: 0,
14141414
}),
14151415
)

0 commit comments

Comments
 (0)