You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2015/08/12 20:53:16 UTC

svn commit: r1695596 - /lucene/dev/trunk/solr/core/src/test/org/apache/solr/TestJoin.java

Author: yonik
Date: Wed Aug 12 18:53:16 2015
New Revision: 1695596

URL: http://svn.apache.org/r1695596
Log:
tests: avoid json responsewriter bug w/ unknown classes

Modified:
    lucene/dev/trunk/solr/core/src/test/org/apache/solr/TestJoin.java

Modified: lucene/dev/trunk/solr/core/src/test/org/apache/solr/TestJoin.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/test/org/apache/solr/TestJoin.java?rev=1695596&r1=1695595&r2=1695596&view=diff
==============================================================================
--- lucene/dev/trunk/solr/core/src/test/org/apache/solr/TestJoin.java (original)
+++ lucene/dev/trunk/solr/core/src/test/org/apache/solr/TestJoin.java Wed Aug 12 18:53:16 2015
@@ -42,6 +42,7 @@ public class TestJoin extends SolrTestCa
     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 SolrTestCa
            + "\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