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:
Yonik Seeley 2015-08-12 18:53:16 +00:00
parent 91eaeb3fe7
commit d336b25449
1 changed files with 2 additions and 1 deletions

View File

@ -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