aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_add_comment_test.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-08-11 14:08:03 +0200
committerMichael Muré <batolettre@gmail.com>2019-08-11 14:08:03 +0200
commit67a3752e176790e82a48706236f889cab4f8913d (patch)
tree113251396fc2569d1db2c2e6fcadb30289b3aa96 /bug/op_add_comment_test.go
parenta0dfc202117e31e01d2d6ec701a41292df35d35d (diff)
downloadgit-bug-67a3752e176790e82a48706236f889cab4f8913d.tar.gz
bug,entity: use a dedicated type to store IDs
Diffstat (limited to 'bug/op_add_comment_test.go')
-rw-r--r--bug/op_add_comment_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/bug/op_add_comment_test.go b/bug/op_add_comment_test.go
index a1789aa0..55bafe36 100644
--- a/bug/op_add_comment_test.go
+++ b/bug/op_add_comment_test.go
@@ -2,6 +2,7 @@ package bug
import (
"encoding/json"
+ "fmt"
"testing"
"time"
@@ -21,8 +22,9 @@ func TestAddCommentSerialize(t *testing.T) {
err = json.Unmarshal(data, &after)
assert.NoError(t, err)
- // enforce creating the ID
- before.ID()
+ // enforce creating the IDs
+ before.Id()
+ rene.Id()
assert.Equal(t, before, &after)
}