From feab9412dffe5772048aad29893c4cb01d566387 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 21 Nov 2018 18:56:12 +0100 Subject: WIP identity in git --- bug/operation_iterator_test.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'bug/operation_iterator_test.go') diff --git a/bug/operation_iterator_test.go b/bug/operation_iterator_test.go index 506cc94f..6b32cfc4 100644 --- a/bug/operation_iterator_test.go +++ b/bug/operation_iterator_test.go @@ -1,17 +1,14 @@ package bug import ( + "github.com/MichaelMure/git-bug/identity" "github.com/MichaelMure/git-bug/repository" "testing" "time" ) var ( - rene = Person{ - Name: "René Descartes", - Email: "rene@descartes.fr", - } - + rene = identity.NewBare("René Descartes", "rene@descartes.fr") unix = time.Now().Unix() createOp = NewCreateOp(rene, unix, "title", "message", nil) -- cgit