thisisArjit commented on code in PR #4133:
URL: https://github.com/apache/gobblin/pull/4133#discussion_r2315043644


##########
gobblin-api/src/test/java/org/apache/gobblin/compat/TextSerializerTest.java:
##########
@@ -49,31 +46,8 @@ public void testSerialize()
       ByteArrayInputStream bIn = new ByteArrayInputStream(bOs.toByteArray());
       DataInputStream dataInputStream = new DataInputStream(bIn);
 
-      Text hadoopText = new Text();
-      hadoopText.readFields(dataInputStream);
-
-      Assert.assertEquals(hadoopText.toString(), textToSerialize);
-    }
-  }
-
-  @Test
-  public void testDeserialize() throws IOException {

Review Comment:
   removed this test as it is reading using hadoopText which reads byte by 
byte. For. every character, we are writing 2 bytes, 1 for higher-order byte & 
another for lower-order byte



-- 
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: dev-unsubscr...@gobblin.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to