diff options
author | Javi Fontan <jfontan@gmail.com> | 2018-08-31 14:56:23 +0200 |
---|---|---|
committer | Javi Fontan <jfontan@gmail.com> | 2018-08-31 14:56:23 +0200 |
commit | cf626677508238893c7c88c3c786a02f17afcc4c (patch) | |
tree | c6a3e4d02a2e28c9df45b428ef96d7bb50248038 /storage/filesystem/storage_test.go | |
parent | 2a7c664b62dd0d87f7ab67b30b1952727788cffa (diff) | |
download | go-git-cf626677508238893c7c88c3c786a02f17afcc4c.tar.gz |
plumbing/storer: rename Static option to ExclusiveAccess
Signed-off-by: Javi Fontan <jfontan@gmail.com>
Diffstat (limited to 'storage/filesystem/storage_test.go')
-rw-r--r-- | storage/filesystem/storage_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/filesystem/storage_test.go b/storage/filesystem/storage_test.go index 23628c7..11bf4fc 100644 --- a/storage/filesystem/storage_test.go +++ b/storage/filesystem/storage_test.go @@ -66,7 +66,7 @@ func (s *StorageStaticSuite) SetUpTest(c *C) { s.dir = c.MkDir() storage, err := NewStorageWithOptions( osfs.New(s.dir), - storer.Options{Static: true}) + storer.Options{ExclusiveAccess: true}) c.Assert(err, IsNil) setUpTest(&s.StorageSuite, c, storage) |