aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/storage_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/filesystem/storage_test.go')
-rw-r--r--storage/filesystem/storage_test.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/storage/filesystem/storage_test.go b/storage/filesystem/storage_test.go
index 3cb7dd8..f1f18f9 100644
--- a/storage/filesystem/storage_test.go
+++ b/storage/filesystem/storage_test.go
@@ -4,8 +4,6 @@ import (
"testing"
. "gopkg.in/check.v1"
- "gopkg.in/src-d/go-git.v4/storage/filesystem/internal/dotgit"
- "gopkg.in/src-d/go-git.v4/utils/fs"
)
func Test(t *testing.T) { TestingT(t) }
@@ -13,9 +11,3 @@ func Test(t *testing.T) { TestingT(t) }
type StorageSuite struct{}
var _ = Suite(&StorageSuite{})
-
-func (s *StorageSuite) TestNewErrorNotFound(c *C) {
- fs := fs.NewOS()
- _, err := NewStorage(fs, "not_found/.git")
- c.Assert(err, Equals, dotgit.ErrNotFound)
-}