sashapolo commented on code in PR #4201:
URL: https://github.com/apache/ignite-3/pull/4201#discussion_r1708833776


##########
modules/schema/src/testFixtures/java/org/apache/ignite/internal/schema/BinaryRowMatcher.java:
##########
@@ -30,16 +29,25 @@ public class BinaryRowMatcher extends 
CustomMatcher<BinaryRow> {
     private final @Nullable BinaryRow row;
 
     private BinaryRowMatcher(@Nullable BinaryRow row) {
-        super("Expected row to be equal to " + rowToString(row));
+        super("a row equal to " + rowToString(row));
         this.row = row;
     }
 
+    @Override
+    public void describeMismatch(Object item, Description description) {
+        if (item instanceof BinaryRow) {

Review Comment:
   No, because `TypeSafeMatcher` does not allow `null`s



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to