lidavidm commented on code in PR #12941:
URL: https://github.com/apache/arrow/pull/12941#discussion_r861206455


##########
java/flight/flight-core/src/test/java/org/apache/arrow/flight/TestClientMiddleware.java:
##########
@@ -246,12 +246,13 @@ public FlightClientMiddleware onCallStarted(CallInfo 
info) {
   }
 
   // Used to test that middleware can send and receive multi-valued text and 
binary headers.
-  static final Map<String, List<byte[]>> EXPECTED_BINARY_HEADERS = new 
HashMap<String, List<byte[]>>() {{
-      put("x-binary-bin", Arrays.asList(new byte[] {0}, new byte[]{1}));
-    }};
-  static final Map<String, List<String>> EXPECTED_TEXT_HEADERS = new 
HashMap<String, List<String>>() {{
-      put("x-text", Arrays.asList("foo", "bar"));
-    }};
+  static final Map<String, List<byte[]>> EXPECTED_BINARY_HEADERS = new 
HashMap<String, List<byte[]>>();
+  static final Map<String, List<String>> EXPECTED_TEXT_HEADERS = new 
HashMap<String, List<String>>();
+
+  {

Review Comment:
   Err, nothing changed here and this is a suggested addition - did you forget 
to add this?



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

Reply via email to