adutra commented on code in PR #8857: URL: https://github.com/apache/iceberg/pull/8857#discussion_r1404403854
########## nessie/src/test/java/org/apache/iceberg/nessie/TestMultipleClients.java: ########## @@ -78,10 +81,19 @@ public void testListNamespaces() { Assertions.assertThat(catalog.listNamespaces()) .containsExactlyInAnyOrder(Namespace.of("db1"), Namespace.of("db2")); + + api.deleteBranch().branch((Branch) api.getReference().refName(branch).get()).delete(); + + Assertions.assertThatThrownBy(() -> catalog.listNamespaces()) Review Comment: Indeed the behavior is different: `listNamespaces` returns an empty list, while `loadNamespaceMetadata` throws `NoSuchNamespaceException`. Should I harmonize the behavior? -- 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