From b50882fc4a5381c3fe745d545c4b5b8eb0c450b0 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 26 May 2026 17:56:08 -0500 Subject: [PATCH] fix error message in test --- router_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router_test.go b/router_test.go index 6829582..5f96f2e 100644 --- a/router_test.go +++ b/router_test.go @@ -239,7 +239,7 @@ func TestRouterInputUnknownDestinationModule(t *testing.T) { t.Fatalf("router should have returned exactly 1 routing error, got: %d", len(routingErrors)) } - if routingErrors[0].ProcessError.Error() != "module.output unable to find module with id: test" { + if routingErrors[0].ProcessError.Error() != "processor[0] error: module.output unable to find module with id: test" { t.Fatalf("routing output error did not match expected, got: %s", routingErrors[0].ProcessError.Error()) } }