From 0346a9132b72103db41ec41ad9acf60288a5c6db Mon Sep 17 00:00:00 2001 From: Jeremy Grelle Date: Mon, 3 Aug 2009 23:05:08 +0000 Subject: [PATCH] SWF-1021 - AbstractFlowExecutionTests.assertFlowExecutionOutcomeEquals() has jUnit arguments reversed --- .../webflow/test/execution/AbstractFlowExecutionTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } /**