aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_add_comment_test.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-03-15 22:01:10 +0100
committerMichael Muré <batolettre@gmail.com>2022-03-15 22:01:10 +0100
commitc5b70d8d94bda20fb8834782ccdb1dbdfb85b052 (patch)
tree134b0417fd3db06967a8cbd29e42140fd24643cf /bug/op_add_comment_test.go
parentcac20c8c4dc9524773c1296165fe596cb9035202 (diff)
downloadgit-bug-c5b70d8d94bda20fb8834782ccdb1dbdfb85b052.tar.gz
bug: don't serialize multiple time the author, only once in OperationPack
Diffstat (limited to 'bug/op_add_comment_test.go')
-rw-r--r--bug/op_add_comment_test.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/bug/op_add_comment_test.go b/bug/op_add_comment_test.go
index fb6fa8ed..446bdb18 100644
--- a/bug/op_add_comment_test.go
+++ b/bug/op_add_comment_test.go
@@ -5,7 +5,6 @@ import (
"testing"
"time"
- "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/MichaelMure/git-bug/identity"
@@ -22,18 +21,17 @@ func TestAddCommentSerialize(t *testing.T) {
before := NewAddCommentOp(rene, unix, "message", nil)
data, err := json.Marshal(before)
- assert.NoError(t, err)
+ require.NoError(t, err)
var after AddCommentOperation
err = json.Unmarshal(data, &after)
- assert.NoError(t, err)
+ require.NoError(t, err)
// enforce creating the ID
before.Id()
- // Replace the identity stub with the real thing
- assert.Equal(t, rene.Id(), after.Author().Id())
+ // Replace the identity as it's not serialized
after.Author_ = rene
- assert.Equal(t, before, &after)
+ require.Equal(t, before, &after)
}