summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <[email protected]>2013-03-06 10:28:11 -0800
committerVicent Martí <[email protected]>2013-03-06 10:28:11 -0800
commit4b40227697094be1bdf921713f6979b8457de310 (patch)
treed2e5cedd128095209a7410c434a54381bdbf4631
parente620ded3930e9c9032421e6754d388be87f2a2e4 (diff)
parentac17e2863397e423dd582d628b03bde6af3170d6 (diff)
Merge pull request #5 from mrb/test_fix
Fixed renamed func in index_test
-rw-r--r--index_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/index_test.go b/index_test.go
index b853ebf..cbcdaa5 100644
--- a/index_test.go
+++ b/index_test.go
@@ -11,7 +11,7 @@ func TestCreateRepoAndStage(t *testing.T) {
// figure out where we can create the test repo
path, err := ioutil.TempDir("", "git2go")
checkFatal(t, err)
- repo, err := Init(path, false)
+ repo, err := InitRepository(path, false)
checkFatal(t, err)
tmpfile := "README"