diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-12-06 23:17:16 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-12-06 23:18:50 +0100 |
commit | 5990aeb7198a4961a363eeb422a3faa57c8dc029 (patch) | |
tree | 67dfad381361e34b18b9afcb36142d97a29117ac /utils | |
parent | 17e3f85613b511c4134ebba5648142887a7b8812 (diff) | |
download | go-git-5990aeb7198a4961a363eeb422a3faa57c8dc029.tar.gz |
revision based on goreportcard.com
Diffstat (limited to 'utils')
-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 2bb9391..5e8f5c1 100644 --- a/utils/fs/os/os_test.go +++ b/utils/fs/os/os_test.go @@ -30,7 +30,7 @@ func (s *OSSuite) TearDownTest(c *C) { } func (s *OSSuite) TestOpenDoesNotCreateDir(c *C) { - _, err := s.Fs.Open("dir/non-existant") + _, err := s.Fs.Open("dir/non-existent") c.Assert(err, NotNil) _, err = stdos.Stat(filepath.Join(s.path, "dir")) c.Assert(stdos.IsNotExist(err), Equals, true) |