Abyss-lord commented on code in PR #6847:
URL: https://github.com/apache/gravitino/pull/6847#discussion_r2074641923
##########
clients/cli/src/test/java/org/apache/gravitino/cli/output/TestTableFormat.java:
##########
@@ -665,4 +740,13 @@ private org.apache.gravitino.rel.Column getMockColumn(
return mockColumn;
}
+
+ private Tag getMockTag(String name, String comment) {
+ Tag mockTag = mock(Tag.class);
+ when(mockTag.name()).thenReturn(name);
+ when(mockTag.comment()).thenReturn(comment);
+ when(mockTag.properties()).thenReturn(ImmutableMap.of("k1", "v1", "k2",
"v2"));
Review Comment:
@unknowntpo Yes, it can't be null, plz fix the failed CI.
--
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]