kfaraz commented on code in PR #14488:
URL: https://github.com/apache/druid/pull/14488#discussion_r1243458556
##########
server/src/test/java/org/apache/druid/client/BrokerInternalQueryConfigTest.java:
##########
@@ -56,7 +58,7 @@ public void testSerde() throws Exception
BrokerInternalQueryConfig.class
);
- Assert.assertEquals(ImmutableMap.of(), config.getContext());
Review Comment:
Haven't gone through the whole PR yet, just a drive-by comment.
Druid code generally follows the style of not have static imports, rather
qualifying the static method calls by the respective class names. So this would
be:
```
Assertions.assertEquals(...)
```
--
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]