diff --git a/spring-webflow/src/main/java/org/springframework/webflow/test/execution/AbstractFlowExecutionTests.java b/spring-webflow/src/main/java/org/springframework/webflow/test/execution/AbstractFlowExecutionTests.java index be1e03c3..701cacfa 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/test/execution/AbstractFlowExecutionTests.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/test/execution/AbstractFlowExecutionTests.java @@ -321,7 +321,7 @@ public abstract class AbstractFlowExecutionTests extends TestCase { */ protected void assertFlowExecutionOutcomeEquals(String outcome) { assertNotNull("There has been no flow execution outcome", flowExecutionOutcome); - assertEquals("The flow execution outcome is wrong", flowExecutionOutcome.getId(), outcome); + assertEquals("The flow execution outcome is wrong", outcome, flowExecutionOutcome.getId()); } /**