aboutsummaryrefslogtreecommitdiffstats
path: root/utils/fs/os/os_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/fs/os/os_test.go')
-rw-r--r--utils/fs/os/os_test.go2
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)