commit: Fix validate job (#1524)

Signed-off-by: Javier Aliaga <javier@diagrid.io>
This commit is contained in:
Javier Aliaga 2025-08-27 11:34:51 +02:00 committed by GitHub
parent cdffdb2af3
commit d8ae74ffc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ public class WorkflowRuntimeBuilder {
this.activitySet.add(name); this.activitySet.add(name);
this.activities.add(name); this.activities.add(name);
this.logger.info("Registered Activity: {}", name); this.logger.info("Registered Activity: {}", clazz.getSimpleName());
return this; return this;
} }

View File

@ -92,6 +92,6 @@ public class WorkflowRuntimeBuilderTest {
.info(eq("Registered Workflow: {}"), eq("TestWorkflow")); .info(eq("Registered Workflow: {}"), eq("TestWorkflow"));
verify(testLogger, times(1)) verify(testLogger, times(1))
.info(eq("Registered Activity: {}"), eq("io.dapr.workflows.runtime.WorkflowRuntimeBuilderTest.TestActivity")); .info(eq("Registered Activity: {}"), eq("TestActivity"));
} }
} }