talatuyarer commented on code in PR #12768: URL: https://github.com/apache/iceberg/pull/12768#discussion_r2045212696
########## core/src/test/java/org/apache/iceberg/rest/TestRESTCatalog.java: ########## @@ -1256,37 +1255,37 @@ public void testTableAuth( required(2, "data", Types.StringType.get())); if (requiresNamespaceCreate()) { - catalog.createNamespace(ident.namespace()); + catalog.createNamespace(TBL.namespace()); } - Table table = catalog.createTable(ident, expectedSchema); + Table table = catalog.createTable(TBL, expectedSchema); assertThat(table.schema().asStruct()) .as("Schema should match") .isEqualTo(expectedSchema.asStruct()); - Table loaded = catalog.loadTable(ident); // the first load will send the token + Table loaded = catalog.loadTable(TBL); // the first load will send the token assertThat(loaded.schema().asStruct()) .as("Schema should match") .isEqualTo(expectedSchema.asStruct()); loaded.refresh(); // refresh to force reload - Mockito.verify(adapter) + verify(adapter) Review Comment: Looks like Intellij Idea did a refactoring without telling me :D I reverted those changes and apply only ident changes. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org