summaryrefslogtreecommitdiffstatshomepage
path: root/bug/op_create_test.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-04-05 00:25:22 +0200
committerGitHub <noreply@github.com>2019-04-05 00:25:22 +0200
commitb9e413c5f95212a0076aae0f473226b32b5fc77a (patch)
treebe6cf69aad498216fa86058b71e2df9a31ebfbd6 /bug/op_create_test.go
parent5b0a92dea43f467f31a65a6f02e937d285cb0a71 (diff)
parent57f0c2f25da3316efbff63f7f8dc73df20705320 (diff)
downloadgit-bug-b9e413c5f95212a0076aae0f473226b32b5fc77a.tar.gz
git-bug-b9e413c5f95212a0076aae0f473226b32b5fc77a.zip
Merge pull request #117 from A-Hilaly/bug-participants
Implement participants and actors functionalities
Diffstat (limited to 'bug/op_create_test.go')
-rw-r--r--bug/op_create_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/bug/op_create_test.go b/bug/op_create_test.go
index aa1d8c10..2a88f256 100644
--- a/bug/op_create_test.go
+++ b/bug/op_create_test.go
@@ -35,8 +35,10 @@ func TestCreate(t *testing.T) {
Comments: []Comment{
comment,
},
- Author: rene,
- CreatedAt: create.Time(),
+ Author: rene,
+ Participants: []identity.Interface{rene},
+ Actors: []identity.Interface{rene},
+ CreatedAt: create.Time(),
Timeline: []TimelineItem{
&CreateTimelineItem{
CommentTimelineItem: NewCommentTimelineItem(hash, comment),