This commit is contained in:
Sebb 2019-06-14 22:52:41 +01:00
parent 7ddc71c20a
commit ed8602db29
1 changed files with 1 additions and 1 deletions

View File

@ -1115,7 +1115,7 @@ public class CSVFormatTest {
fail("Objects must not compare equal for " + name + "(" + type + ")"); fail("Objects must not compare equal for " + name + "(" + type + ")");
} }
if (left.hashCode() == right.hashCode()) { if (left.hashCode() == right.hashCode()) {
fail("Hash code not be equal for " + name + "(" + type + ")"); fail("Hash code should not be equal for " + name + "(" + type + ")");
} }
} }