From e1b172aaf0e984791b5af4a64b144339fd4042f6 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 24 Aug 2022 21:29:17 +0200 Subject: dag: test op serialisation with the unmarshaller, to allow resolving entities --- entities/bug/op_set_status_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'entities/bug/op_set_status_test.go') diff --git a/entities/bug/op_set_status_test.go b/entities/bug/op_set_status_test.go index 5bb30265..0f6d358a 100644 --- a/entities/bug/op_set_status_test.go +++ b/entities/bug/op_set_status_test.go @@ -5,11 +5,12 @@ import ( "github.com/MichaelMure/git-bug/entities/common" "github.com/MichaelMure/git-bug/entities/identity" + "github.com/MichaelMure/git-bug/entity" "github.com/MichaelMure/git-bug/entity/dag" ) func TestSetStatusSerialize(t *testing.T) { - dag.SerializeRoundTripTest(t, func(author identity.Interface, unixTime int64) *SetStatusOperation { - return NewSetStatusOp(author, unixTime, common.ClosedStatus) + dag.SerializeRoundTripTest(t, operationUnmarshaler, func(author identity.Interface, unixTime int64) (*SetStatusOperation, entity.Resolvers) { + return NewSetStatusOp(author, unixTime, common.ClosedStatus), nil }) } -- cgit