diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-17 01:52:56 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-17 01:52:56 +0200 |
commit | 0180b68cb0bb3aecf9b4a6186094a084762b4a25 (patch) | |
tree | 95597554cfdda76b9f6cc5aab7c3fd5b24a3db75 /tests | |
parent | 1d678dfdfa026968dbb19795c9bed16385603b21 (diff) | |
download | git-bug-0180b68cb0bb3aecf9b4a6186094a084762b4a25.tar.gz |
implement pull/merge
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bug_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bug_test.go b/tests/bug_test.go index 62166723..366b56b6 100644 --- a/tests/bug_test.go +++ b/tests/bug_test.go @@ -62,7 +62,7 @@ func TestBugSerialisation(t *testing.T) { bug1.Commit(repo) - bug2, err := bug.ReadBug(repo, bug1.Id()) + bug2, err := bug.ReadBug(repo, bug.BugsRefPattern+bug1.Id()) if err != nil { t.Error(err) } |