diff options
Diffstat (limited to 'tests/operation_iterator_test.go')
-rw-r--r-- | tests/operation_iterator_test.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/operation_iterator_test.go b/tests/operation_iterator_test.go index b2f01513..03747fa4 100644 --- a/tests/operation_iterator_test.go +++ b/tests/operation_iterator_test.go @@ -13,9 +13,10 @@ var ( Email: "rene@descartes.fr", } - createOp = operations.NewCreateOp(rene, "title", "message") - setTitleOp = operations.NewSetTitleOp("title2") - mockRepo = repository.NewMockRepoForTest() + createOp = operations.NewCreateOp(rene, "title", "message") + setTitleOp = operations.NewSetTitleOp("title2") + addCommentOp = operations.NewAddCommentOp(rene, "message2") + mockRepo = repository.NewMockRepoForTest() ) func TestOpIterator(t *testing.T) { |