mirror of https://github.com/apache/lucene.git
SOLR-10760: fix another Solrj test
This commit is contained in:
parent
f6b0f96568
commit
9e8027d39a
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue