Renmae FileStat Stat

This commit is contained in:
satotake
2018-08-05 21:59:29 +09:00
committed by Bjørn Erik Pedersen
parent c362634b7d
commit d40116e5f9
3 changed files with 5 additions and 5 deletions

View File

@@ -100,7 +100,7 @@ func TestFileExists(t *testing.T) {
}
}
func TestFileStat(t *testing.T) {
func TestStat(t *testing.T) {
t.Parallel()
workingDir := "/home/hugo"
@@ -122,7 +122,7 @@ func TestFileStat(t *testing.T) {
{"", nil},
} {
errMsg := fmt.Sprintf("[%d] %v", i, test)
result, err := ns.FileStat(test.filename)
result, err := ns.Stat(test.filename)
if test.expect == nil {
require.Error(t, err, errMsg)