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 --- storage/filesystem/config_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storage/filesystem/config_test.go') diff --git a/storage/filesystem/config_test.go b/storage/filesystem/config_test.go index b52e6a1..2eb0ab9 100644 --- a/storage/filesystem/config_test.go +++ b/storage/filesystem/config_test.go @@ -25,7 +25,7 @@ func (s *ConfigSuite) SetUpTest(c *C) { tmp, err := ioutil.TempDir("", "go-git-filestystem-config") c.Assert(err, IsNil) - s.dir = dotgit.New(os.NewOS(tmp)) + s.dir = dotgit.New(os.New(tmp)) s.path = tmp } -- cgit