diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-15 22:30:35 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-15 22:30:35 +0200 |
commit | 1e9f2a9d1cc7f0ce8fc699493aa3a4f6c3b01c40 (patch) | |
tree | 11e9362c7eef0bc5a13d28e61c16e91b400b3746 /tests/operation_iterator_test.go | |
parent | f728a02ad5ba9a1ce045df61410527ec7562e3dc (diff) | |
download | git-bug-1e9f2a9d1cc7f0ce8fc699493aa3a4f6c3b01c40.tar.gz |
fix tests
Diffstat (limited to 'tests/operation_iterator_test.go')
-rw-r--r-- | tests/operation_iterator_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/operation_iterator_test.go b/tests/operation_iterator_test.go index d40d4bae..e2f8e01b 100644 --- a/tests/operation_iterator_test.go +++ b/tests/operation_iterator_test.go @@ -14,7 +14,7 @@ var ( } createOp = operations.NewCreateOp(rene, "title", "message", nil) - setTitleOp = operations.NewSetTitleOp(rene, "title2") + setTitleOp = operations.NewSetTitleOp(rene, "title2", "title1") addCommentOp = operations.NewAddCommentOp(rene, "message2", nil) setStatusOp = operations.NewSetStatusOp(rene, bug.ClosedStatus) labelChangeOp = operations.NewLabelChangeOperation(rene, []bug.Label{"added"}, []bug.Label{"removed"}) |