Title: [741] trunk/core/src/behaviour/org/jbehave/core/matchers/UsingCollectionMatchersBehaviour.java: Fixed behaviour following JDK1.4 compatibility.
Revision
741
Author
mauro
Date
2007-07-10 04:23:42 -0500 (Tue, 10 Jul 2007)

Log Message

Fixed behaviour following JDK1.4 compatibility.

Modified Paths


Diff

Modified: trunk/core/src/behaviour/org/jbehave/core/matchers/UsingCollectionMatchersBehaviour.java (740 => 741)

--- trunk/core/src/behaviour/org/jbehave/core/matchers/UsingCollectionMatchersBehaviour.java	2007-07-10 09:06:08 UTC (rev 740)
+++ trunk/core/src/behaviour/org/jbehave/core/matchers/UsingCollectionMatchersBehaviour.java	2007-07-10 09:23:42 UTC (rev 741)
@@ -80,8 +80,8 @@
         Ensure.that(containsInOrder.toString(), eq("a collection containing [equal to <4>, equal to <5>] and in order"));
         
         // Describe what we got
-		Ensure.that(contains.describe(list), eq("a ArrayList containing [5, 6]"));
-		Ensure.that(containsOnly.describe(list), eq("a ArrayList containing [5, 6]"));
-		Ensure.that(containsInOrder.describe(list), eq("a ArrayList containing [5, 6]"));
+		Ensure.that(contains.describe(list), eq("a java.util.ArrayList containing [5, 6]"));
+		Ensure.that(containsOnly.describe(list), eq("a java.util.ArrayList containing [5, 6]"));
+		Ensure.that(containsInOrder.describe(list), eq("a java.util.ArrayList containing [5, 6]"));
     }
 }


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to