fix error message in test

This commit is contained in:
Joel Wetzell
2026-05-26 17:56:08 -05:00
parent 438c396aeb
commit b50882fc4a
+1 -1
View File
@@ -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())
}
}