Tejaskriya commented on code in PR #8016:
URL: https://github.com/apache/ozone/pull/8016#discussion_r2067961325


##########
hadoop-ozone/tools/src/test/java/org/apache/hadoop/ozone/graph/TestPrintableGraph.java:
##########
@@ -63,14 +63,10 @@ void testPrintNoGraphMessage(PrintableGraph.GraphType 
graphType) {
   @EnumSource(PrintableGraph.GraphType.class)
   void testPrintActualGraph(PrintableGraph.GraphType graphType) throws 
IOException {
     Set<CompactionNode> nodes = Stream.of(
-        new CompactionNode("fileName1",
-            100, 100, "startKey1", "endKey1", "columnFamily1"),
-        new CompactionNode("fileName2",
-        200, 200, "startKey2", "endKey2", null),
-        new CompactionNode("fileName3",
-        300, 300, null, "endKey3", "columnFamily3"),
-        new CompactionNode("fileName4",
-        400, 400, "startKey4", null, "columnFamily4")
+        new CompactionNode("fileName1", 100, "startKey1", "endKey1", 
"columnFamily1"),
+        new CompactionNode("fileName2", 200, "startKey2", "endKey2", null),
+        new CompactionNode("fileName3", 300, null, "endKey3", "columnFamily3"),
+        new CompactionNode("fileName4", 400, "startKey4", null, 
"columnFamily4")

Review Comment:
   Apart form the formatting changes we are also removing one parameter (the 
3rd one)



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


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

Reply via email to