diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2020-03-10 01:41:19 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2020-03-10 01:41:19 +0100 |
commit | 2637279338ca9736c22b5e15fca916121ae8d089 (patch) | |
tree | 2273e55f2d2b68b9b6335924d6b00ddf3417e8e7 /storage/memory/storage_test.go | |
parent | 2bdfd91f04068220a72feeade31defc09f2a601e (diff) | |
download | go-git-2637279338ca9736c22b5e15fca916121ae8d089.tar.gz |
*: migration from go-git-fixtures/v4 and go-git/gcfg
Diffstat (limited to 'storage/memory/storage_test.go')
-rw-r--r-- | storage/memory/storage_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/storage/memory/storage_test.go b/storage/memory/storage_test.go index 85c7859..a634d5d 100644 --- a/storage/memory/storage_test.go +++ b/storage/memory/storage_test.go @@ -3,8 +3,8 @@ package memory import ( "testing" - . "gopkg.in/check.v1" "github.com/go-git/go-git/v5/storage/test" + . "gopkg.in/check.v1" ) func Test(t *testing.T) { TestingT(t) } @@ -17,5 +17,4 @@ var _ = Suite(&StorageSuite{}) func (s *StorageSuite) SetUpTest(c *C) { s.BaseStorageSuite = test.NewBaseStorageSuite(NewStorage()) - s.BaseStorageSuite.SetUpTest(c) } |