From fcb13787846ebdd942a65f30822db3a5d45e690e Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 27 Dec 2025 23:02:37 -0600 Subject: [PATCH] fix route test --- internal/route/route_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/route/route_test.go b/internal/route/route_test.go index a010fe8..3de49fe 100644 --- a/internal/route/route_test.go +++ b/internal/route/route_test.go @@ -33,7 +33,7 @@ func (mr *MockRouter) HandleInput(sourceId string, payload any) []route.RouteIOE return nil } -func (mr *MockRouter) HandleOutput(sourceId string, destinationId string, payload any) error { +func (mr *MockRouter) HandleOutput(ctx context.Context, destinationId string, payload any) error { return nil }