jackye1995 commented on a change in pull request #2585:
URL: https://github.com/apache/iceberg/pull/2585#discussion_r631427297



##########
File path: core/src/test/java/org/apache/iceberg/MockFileScanTask.java
##########
@@ -32,4 +32,28 @@ public MockFileScanTask(long length) {
   public long length() {
     return length;
   }
+
+  @Override
+  public String toString() {
+    return "Mock Scan Task Size: " + length;
+  }
+
+  @Override
+  public boolean equals(Object o) {
+    if (this == o) {
+      return true;
+    }
+    if (o == null || getClass() != o.getClass()) {
+      return false;
+    }
+
+    MockFileScanTask that = (MockFileScanTask) o;
+

Review comment:
       nit: extra space




-- 
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.

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



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to