nastra commented on code in PR #14398:
URL: https://github.com/apache/iceberg/pull/14398#discussion_r2697686386


##########
core/src/test/java/org/apache/iceberg/rest/TestRESTCatalog.java:
##########
@@ -3504,6 +4055,45 @@ protected RESTSessionCatalog newSessionCatalog(
     return catalog;
   }
 
+  private void expectFullTableLoadForLoadTable(TableIdentifier ident, 
RESTCatalogAdapter adapter) {
+    Answer<LoadTableResponse> invocationAssertsFullLoad =
+        invocation -> {
+          LoadTableResponse response = (LoadTableResponse) 
invocation.callRealMethod();
+
+          assertThat(response).isNotEqualTo(null);
+

Review Comment:
   empty new lines can be removed. they don't really add value



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