stillalex commented on code in PR #1459: URL: https://github.com/apache/solr/pull/1459#discussion_r1137562476
########## solr/core/src/test/org/apache/solr/cloud/AliasIntegrationTest.java: ########## @@ -291,20 +316,25 @@ public void testModifyPropertiesCAR() throws Exception { setAliasProperty.addProperty("foo", "baz"); setAliasProperty.addProperty("bar", "bam"); setAliasProperty.process(cluster.getSolrClient()); - checkFooAndBarMeta(aliasName, zkStateReader); + checkFooAndBarMeta(aliasName, zkStateReader, "baz", "bam"); // now verify we can delete setAliasProperty = CollectionAdminRequest.setAliasProperty(aliasName); setAliasProperty.addProperty("foo", ""); setAliasProperty.process(cluster.getSolrClient()); + checkFooAndBarMeta(aliasName, zkStateReader, null, "bam"); + + // TODO is this a bug? should "bar" be null after the following Review Comment: email sent to dev list -- 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...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org