Skip to content

Commit 10910e5

Browse files
committed
Corrected test
1 parent 38b2ca6 commit 10910e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hamcrest-core/src/test/java/org/hamcrest/FeatureMatcherTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public final class FeatureMatcherTest {
3030
resultMatcher.matches(new ShouldNotMatch());
3131
StringDescription mismatchDescription = new StringDescription();
3232
resultMatcher.describeMismatch(new ShouldNotMatch(), mismatchDescription);
33-
assertEquals("was <ShouldNotMatch>", mismatchDescription.toString());
33+
assertEquals("was ShouldNotMatch <ShouldNotMatch>", mismatchDescription.toString());
3434
}
3535

3636
public static class Match extends IsEqual<String> {

0 commit comments

Comments
 (0)