diff options
Diffstat (limited to 'bug/op_label_change_test.go')
-rw-r--r-- | bug/op_label_change_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bug/op_label_change_test.go b/bug/op_label_change_test.go index 7c311a8b..2a93e362 100644 --- a/bug/op_label_change_test.go +++ b/bug/op_label_change_test.go @@ -21,8 +21,9 @@ func TestLabelChangeSerialize(t *testing.T) { err = json.Unmarshal(data, &after) assert.NoError(t, err) - // enforce creating the ID - before.ID() + // enforce creating the IDs + before.Id() + rene.Id() assert.Equal(t, before, &after) } |