Skip to content

Commit d5a39b0

Browse files
committed
fixup! fix: non-ascii paths in git walker
Signed-off-by: Brian McGee <[email protected]>
1 parent 4264928 commit d5a39b0

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

cmd/root_test.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,12 @@ func TestAllowMissingFormatter(t *testing.T) {
183183
treefmt(t,
184184
withArgs("--allow-missing-formatter"),
185185
withNoError(t),
186+
withStats(t, map[stats.Type]int{
187+
stats.Traversed: 33,
188+
stats.Matched: 0,
189+
stats.Formatted: 0,
190+
stats.Changed: 0,
191+
}),
186192
)
187193
})
188194

@@ -1346,7 +1352,7 @@ func TestGit(t *testing.T) {
13461352
withStats(t, map[stats.Type]int{
13471353
stats.Traversed: 82,
13481354
stats.Matched: 82,
1349-
stats.Formatted: 51, // the echo formatter should only be applied to the new files
1355+
stats.Formatted: 50, // the echo formatter should only be applied to the new files
13501356
stats.Changed: 0,
13511357
}),
13521358
)

test/examples/emoji 🕰️/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Hello World
1+
# Hello World

walk/git.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ LOOP:
105105

106106
files[n] = &File{
107107
Path: path,
108-
RelPath: filepath.Join(g.path, g.scanner.Text()),
108+
RelPath: filepath.Join(g.path, entry),
109109
Info: info,
110110
}
111111
n++

0 commit comments

Comments
 (0)