diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-29 20:41:19 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-29 20:41:19 +0200 |
commit | c46d01f8c10e6363b680fa6876e91bd8eaf3bb3e (patch) | |
tree | dde41c1253534bf4ff36e39454f2bdbdf4b9590f /bug/operation_test.go | |
parent | 41e61a67b63e4d6c517005cf6f427115a664bdb5 (diff) | |
download | git-bug-c46d01f8c10e6363b680fa6876e91bd8eaf3bb3e.tar.gz |
bug: implement comment edition
- add a new operation
- add a new "timeline" in the snapshot that hold a processed version of the operations
Diffstat (limited to 'bug/operation_test.go')
-rw-r--r-- | bug/operation_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/operation_test.go b/bug/operation_test.go index 8561adf3..098cf138 100644 --- a/bug/operation_test.go +++ b/bug/operation_test.go @@ -36,7 +36,7 @@ func TestValidate(t *testing.T) { NewSetStatusOp(Person{Name: "René Descartes", Email: "rene@descartes.fr\u001b"}, unix, ClosedStatus), NewSetStatusOp(Person{Name: "René \nDescartes", Email: "rene@descartes.fr"}, unix, ClosedStatus), NewSetStatusOp(Person{Name: "René Descartes", Email: "rene@\ndescartes.fr"}, unix, ClosedStatus), - CreateOperation{OpBase: &OpBase{ + &CreateOperation{OpBase: &OpBase{ Author: rene, UnixTime: 0, OperationType: CreateOp, |