SOLR-10760: fix another Solrj test

This commit is contained in:
Steve Rowe 2017-07-26 18:42:17 -04:00
parent f6b0f96568
commit 9e8027d39a
1 changed files with 3 additions and 0 deletions

View File

@ -421,6 +421,9 @@ abstract public class SolrExampleTests extends SolrExampleTestsBase
catch(SolrException ex) {
assertEquals(500, ex.code());
assertThat(ex.getMessage(), containsString(" Can't generate internal string in PointField. use PointField.toInternalByteRef"));
}
catch (SolrServerException ex) {
assertThat(ex.getMessage(), containsString(" Can't generate internal string in PointField. use PointField.toInternalByteRef"));
}
catch(Throwable t) {
t.printStackTrace();