aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/object
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/object')
-rw-r--r--plumbing/object/file_test.go5
-rw-r--r--plumbing/object/tree_test.go5
2 files changed, 6 insertions, 4 deletions
diff --git a/plumbing/object/file_test.go b/plumbing/object/file_test.go
index ff01c9f..c482541 100644
--- a/plumbing/object/file_test.go
+++ b/plumbing/object/file_test.go
@@ -254,7 +254,7 @@ func (s *FileSuite) TestFileIterSubmodule(c *C) {
c.Assert(err, IsNil)
- hash := plumbing.NewHash("a692ec699bff9117c1ed91752afbb7d9d272ebef")
+ hash := plumbing.NewHash("b685400c1f9316f350965a5993d350bc746b0bf4")
commit, err := GetCommit(st, hash)
c.Assert(err, IsNil)
@@ -263,6 +263,7 @@ func (s *FileSuite) TestFileIterSubmodule(c *C) {
expected := []string{
".gitmodules",
+ "README.md",
}
var count int
@@ -273,5 +274,5 @@ func (s *FileSuite) TestFileIterSubmodule(c *C) {
return nil
})
- c.Assert(count, Equals, 1)
+ c.Assert(count, Equals, 2)
}
diff --git a/plumbing/object/tree_test.go b/plumbing/object/tree_test.go
index 8ea31bb..81fbdec 100644
--- a/plumbing/object/tree_test.go
+++ b/plumbing/object/tree_test.go
@@ -270,7 +270,7 @@ func (s *TreeSuite) TestTreeWalkerNextSubmodule(c *C) {
st, err := filesystem.NewStorage(dotgit)
c.Assert(err, IsNil)
- hash := plumbing.NewHash("a692ec699bff9117c1ed91752afbb7d9d272ebef")
+ hash := plumbing.NewHash("b685400c1f9316f350965a5993d350bc746b0bf4")
commit, err := GetCommit(st, hash)
c.Assert(err, IsNil)
@@ -279,6 +279,7 @@ func (s *TreeSuite) TestTreeWalkerNextSubmodule(c *C) {
expected := []string{
".gitmodules",
+ "README.md",
"basic",
"itself",
}
@@ -300,7 +301,7 @@ func (s *TreeSuite) TestTreeWalkerNextSubmodule(c *C) {
count++
}
- c.Assert(count, Equals, 3)
+ c.Assert(count, Equals, 4)
}
var treeWalkerExpects = []struct {