Skip to content

Commit

Permalink
fix test name for WorkflowTimeoutUtilityTests
Browse files Browse the repository at this point in the history
Signed-off-by: Junwei Dai <[email protected]>
  • Loading branch information
Junwei Dai committed Jan 15, 2025
1 parent 7344930 commit d6c0c53
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void testScheduleTimeoutHandler() {
);
}

public void testWrapWithTimeoutCancellationListener_OnResponse() {
public void testWrapWithTimeoutCancellationListenerOnResponse() {
WorkflowResponse response = new WorkflowResponse(
"testWorkflowId",
new WorkflowState(
Expand Down Expand Up @@ -104,7 +104,7 @@ public void testWrapWithTimeoutCancellationListener_OnResponse() {
verify(mockListener, times(1)).onResponse(response);
}

public void testWrapWithTimeoutCancellationListener_OnFailure() {
public void testWrapWithTimeoutCancellationListenerOnFailure() {
Exception exception = new Exception("Test exception");
Scheduler.ScheduledCancellable scheduledCancellable = mock(Scheduler.ScheduledCancellable.class);

Expand Down

0 comments on commit d6c0c53

Please sign in to comment.