Skip to content

Commit 4a77b9d

Browse files
committed
remove void value
1 parent 106ee0c commit 4a77b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/test/java/com/microsoft/durabletask/TaskOrchestrationEntityEventTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ void callEntity_nullResultViaEventRaised_triggerBindingPath() {
706706

707707
// Second pass: replay with null result in ResponseMessage
708708
executor = createExecutor(orchestratorName, ctx -> {
709-
Void value = ctx.callEntity(entityId, "reset", null, Void.class).await();
709+
ctx.callEntity(entityId, "reset", null, Void.class).await();
710710
ctx.complete("done");
711711
});
712712

0 commit comments

Comments
 (0)