Skip to content

Commit d185a41

Browse files
fix some format issue
1 parent a97b634 commit d185a41

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

temporal-sdk/src/test/java/io/temporal/workflow/childWorkflowTests/ChildWorkflowStartInCancelledScopeTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ public void testStartChildInCancelledScope() {
3131
} catch (WorkflowFailedException e) {
3232
assertTrue(e.getCause() instanceof CanceledFailure);
3333
CanceledFailure failure = (CanceledFailure) e.getCause();
34-
assertTrue(failure.getOriginalMessage().contains("execute called from a cancelled scope"));
35-
34+
assertTrue(failure.getOriginalMessage().contains("execute called from a canceled scope"));
3635
}
3736
}
3837

0 commit comments

Comments
 (0)