aboutsummaryrefslogtreecommitdiffstats
path: root/repository_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'repository_test.go')
-rw-r--r--repository_test.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/repository_test.go b/repository_test.go
index 9433a3c..7d4ddce 100644
--- a/repository_test.go
+++ b/repository_test.go
@@ -583,10 +583,14 @@ func (s *RepositorySuite) TestPlainOpenDetectDotGit(c *C) {
c.Assert(err, IsNil)
c.Assert(r, NotNil)
- opt = &PlainOpenOptions{DetectDotGit: true}
r, err = PlainOpenWithOptions(file, opt)
c.Assert(err, IsNil)
c.Assert(r, NotNil)
+
+ optnodetect := &PlainOpenOptions{DetectDotGit: false}
+ r, err = PlainOpenWithOptions(file, optnodetect)
+ c.Assert(err, NotNil)
+ c.Assert(r, IsNil)
}
func (s *RepositorySuite) TestPlainOpenNotExistsDetectDotGit(c *C) {