summaryrefslogtreecommitdiff
path: root/status_test.go
diff options
context:
space:
mode:
authorBen Navetta <[email protected]>2014-08-18 22:58:53 -0400
committerBen Navetta <[email protected]>2014-08-18 22:58:53 -0400
commita093e20a8812f2cc26fde6d4bc6ee8c21e782c39 (patch)
tree132b64d28c67554e96729080dc731d49057858b3 /status_test.go
parentf954871968ca6df54aab26d6984cc42bb3904ef2 (diff)
add status option support
Diffstat (limited to 'status_test.go')
-rw-r--r--status_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/status_test.go b/status_test.go
index 0cc9de3..3fababe 100644
--- a/status_test.go
+++ b/status_test.go
@@ -15,7 +15,7 @@ func TestEntryCount(t *testing.T) {
err := ioutil.WriteFile(path.Join(path.Dir(repo.Path()), "hello.txt"), []byte("Hello, World"), 0644)
checkFatal(t, err)
- statusList, err := repo.StatusList()
+ statusList, err := repo.StatusList(nil)
checkFatal(t, err)
entryCount, err := statusList.EntryCount()