diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-21 18:18:51 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-21 18:53:37 +0200 |
commit | 82eaceffc1d750832a2a66f206749d2dca968cce (patch) | |
tree | 1431c8f1fd9baa689b850da7f104d12c20b1d8a7 /tests | |
parent | 6a575fbf483e2b28821908f67e87637d9e5cea75 (diff) | |
download | git-bug-82eaceffc1d750832a2a66f206749d2dca968cce.tar.gz |
repo: split the Repo interface to avoid abstraction leak in RepoCache
Diffstat (limited to 'tests')
-rw-r--r-- | tests/read_bugs_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/read_bugs_test.go b/tests/read_bugs_test.go index b4513bb4..c3c7d9ea 100644 --- a/tests/read_bugs_test.go +++ b/tests/read_bugs_test.go @@ -8,7 +8,7 @@ import ( "github.com/MichaelMure/git-bug/repository" ) -func createFilledRepo(bugNumber int) repository.Repo { +func createFilledRepo(bugNumber int) repository.ClockedRepo { repo := createRepo(false) var seed int64 = 42 |