diff options
Diffstat (limited to 'utils/fs/os/os_test.go')
-rw-r--r-- | utils/fs/os/os_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fs/os/os_test.go b/utils/fs/os/os_test.go index 02a0a6c..756e284 100644 --- a/utils/fs/os/os_test.go +++ b/utils/fs/os/os_test.go @@ -21,7 +21,7 @@ var _ = Suite(&OSSuite{}) func (s *OSSuite) SetUpTest(c *C) { s.path, _ = ioutil.TempDir(stdos.TempDir(), "go-git-os-fs-test") - s.FilesystemSuite.Fs = os.NewOS(s.path) + s.FilesystemSuite.Fs = os.New(s.path) } func (s *OSSuite) TearDownTest(c *C) { err := stdos.RemoveAll(s.path) |