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