aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_set_status_test.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-02-14 11:36:32 +0100
committerMichael Muré <batolettre@gmail.com>2021-02-14 12:19:50 +0100
commit3f6ef50883492f77995a7e27872d0b5ae17b9d6a (patch)
tree97677642f1b01c73c8c5a708ea0ec67ced8c402f /bug/op_set_status_test.go
parent99b9dd84cb4b0cfd3eb1fd50b07c8b826eb52d19 (diff)
downloadgit-bug-3f6ef50883492f77995a7e27872d0b5ae17b9d6a.tar.gz
bug: migrate to the DAG entity structure!
Diffstat (limited to 'bug/op_set_status_test.go')
-rw-r--r--bug/op_set_status_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/op_set_status_test.go b/bug/op_set_status_test.go
index 3b26282f..83ff22ae 100644
--- a/bug/op_set_status_test.go
+++ b/bug/op_set_status_test.go
@@ -31,8 +31,8 @@ func TestSetStatusSerialize(t *testing.T) {
before.Id()
// Replace the identity stub with the real thing
- require.Equal(t, rene.Id(), after.base().Author.Id())
- after.Author = rene
+ require.Equal(t, rene.Id(), after.Author().Id())
+ after.Author_ = rene
require.Equal(t, before, &after)
}