From 3a85c05bcf82ac4a6d48165bd644d81622fae80a Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Fri, 4 Nov 2016 12:29:00 +0100 Subject: utils: fs, new memory filesystem (#108) * utils: fs, new memory filesystem * utils: fs, renamed os.NewOS to os.New * utils: fs, memory changes requested by @alcortes --- utils/fs/os/os_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/fs/os/os_test.go') 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) -- cgit