ebyhr commented on code in PR #12822: URL: https://github.com/apache/iceberg/pull/12822#discussion_r2048333778
########## core/src/test/java/org/apache/iceberg/catalog/CatalogTests.java: ########## @@ -448,8 +453,9 @@ public void testListNamespaces() { @Test public void testListNestedNamespaces() { - Assumptions.assumeTrue( - supportsNestedNamespaces(), "Only valid when the catalog supports nested namespaces"); + assumeThat(supportsNestedNamespaces()) + .isEqualTo(true) + .as("Only valid when the catalog supports nested namespaces"); Review Comment: `as` should be set before calling the assertion such as `isEqualTo`. edit: I missed `@nastra` left the same comment in the following class. -- 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