summaryrefslogtreecommitdiff
path: root/branch_test.go
diff options
context:
space:
mode:
authorJesse Ezell <[email protected]>2014-03-19 00:36:00 -0700
committerJesse Ezell <[email protected]>2014-03-19 00:36:00 -0700
commit27bea93efeba771b72d7c4850067a5dc1339caa6 (patch)
tree036cb7bd477d91a6cc42f21026d0a8905007b3b8 /branch_test.go
parent006286edb75849a38a33cfbe341d8c92de0e119d (diff)
split out name iterator
Diffstat (limited to 'branch_test.go')
-rw-r--r--branch_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/branch_test.go b/branch_test.go
index 7db509b..ee65b07 100644
--- a/branch_test.go
+++ b/branch_test.go
@@ -32,7 +32,7 @@ func TestBranchIterator(t *testing.T) {
checkFatal(t, err)
list := make([]string, 0)
- for ref := range ReferenceNameIteratorChannel(i) {
+ for ref := range NameIteratorChannel(i) {
list = append(list, ref)
}