SWF-1021 - AbstractFlowExecutionTests.assertFlowExecutionOutcomeEquals() has jUnit arguments reversed

This commit is contained in:
Jeremy Grelle
2009-08-03 23:05:08 +00:00
parent ed98f01058
commit 0346a9132b

View File

@@ -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());
}
/**