summaryrefslogtreecommitdiffstatshomepage
path: root/bug/op_create_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/op_create_test.go')
-rw-r--r--bug/op_create_test.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/bug/op_create_test.go b/bug/op_create_test.go
index 533aec2e..73a65778 100644
--- a/bug/op_create_test.go
+++ b/bug/op_create_test.go
@@ -29,14 +29,17 @@ func TestCreate(t *testing.T) {
id := create.Id()
require.NoError(t, id.Validate())
+ commentId := DeriveCommentId(create.Id(), create.Id())
+
comment := Comment{
- id: id,
+ id: commentId,
Author: rene,
Message: "message",
UnixTime: timestamp.Timestamp(create.UnixTime),
}
expected := Snapshot{
+ id: create.Id(),
Title: "title",
Comments: []Comment{
comment,
@@ -47,7 +50,7 @@ func TestCreate(t *testing.T) {
CreateTime: create.Time(),
Timeline: []TimelineItem{
&CreateTimelineItem{
- CommentTimelineItem: NewCommentTimelineItem(id, comment),
+ CommentTimelineItem: NewCommentTimelineItem(commentId, comment),
},
},
}