File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,12 @@ func TestAllowMissingFormatter(t *testing.T) {
183
183
treefmt (t ,
184
184
withArgs ("--allow-missing-formatter" ),
185
185
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
+ }),
186
192
)
187
193
})
188
194
@@ -1346,7 +1352,7 @@ func TestGit(t *testing.T) {
1346
1352
withStats (t , map [stats.Type ]int {
1347
1353
stats .Traversed : 82 ,
1348
1354
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
1350
1356
stats .Changed : 0 ,
1351
1357
}),
1352
1358
)
Original file line number Diff line number Diff line change 1
- # Hello World
1
+ # Hello World
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ LOOP:
105
105
106
106
files [n ] = & File {
107
107
Path : path ,
108
- RelPath : filepath .Join (g .path , g . scanner . Text () ),
108
+ RelPath : filepath .Join (g .path , entry ),
109
109
Info : info ,
110
110
}
111
111
n ++
You can’t perform that action at this time.
0 commit comments