aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_add_comment_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/op_add_comment_test.go')
-rw-r--r--bug/op_add_comment_test.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/bug/op_add_comment_test.go b/bug/op_add_comment_test.go
deleted file mode 100644
index efdf7601..00000000
--- a/bug/op_add_comment_test.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package bug
-
-import (
- "testing"
-
- "github.com/MichaelMure/git-bug/entity/dag"
- "github.com/MichaelMure/git-bug/identity"
- "github.com/MichaelMure/git-bug/repository"
-)
-
-func TestAddCommentSerialize(t *testing.T) {
- dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *AddCommentOperation {
- return NewAddCommentOp(author, unixTime, "message", nil)
- })
- dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *AddCommentOperation {
- return NewAddCommentOp(author, unixTime, "message", []repository.Hash{"hash1", "hash2"})
- })
-}