mirror of https://github.com/apache/lucene.git
tests: avoid json responsewriter bug w/ unknown classes
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1695596 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
91eaeb3fe7
commit
d336b25449
|
@ -42,6 +42,7 @@ public class TestJoin extends SolrTestCaseJ4 {
|
|||
initCore("solrconfig.xml","schema12.xml");
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testJoin() throws Exception {
|
||||
assertU(add(doc("id", "1","name", "john", "title", "Director", "dept_s","Engineering")));
|
||||
|
@ -223,7 +224,7 @@ public class TestJoin extends SolrTestCaseJ4 {
|
|||
+ "\n\trequest="+req
|
||||
+ "\n\tresult="+strResponse
|
||||
+ "\n\texpected="+ JSONUtil.toJSON(resultSet)
|
||||
+ "\n\tmodel="+ JSONUtil.toJSON(model)
|
||||
+ "\n\tmodel="+ model
|
||||
);
|
||||
|
||||
// re-execute the request... good for putting a breakpoint here for debugging
|
||||
|
|
Loading…
Reference in New Issue