File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/test/java/com/marklogic/client/test Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public class PojoFacadeTest {
4848 public static void beforeClass () {
4949 Common .connect ();
5050 cities = Common .client .newPojoRepository (City .class , Integer .class );
51- System .setProperty ("org.apache.commons.logging.simplelog.log.org.apache.http.wire" , "debug" );
51+ // System.setProperty("org.apache.commons.logging.simplelog.log.org.apache.http.wire", "debug");
5252 }
5353 @ AfterClass
5454 public static void afterClass () {
@@ -153,6 +153,8 @@ public void testC_QueryPojos() throws Exception {
153153 assertEquals ("Failed to find number of records expected" , 21 , numRead );
154154 assertEquals ("PojoPage failed to report number of records expected" , numRead , page .size ());
155155
156+ // TODO: uncomment tests below once geospatial on JSON is implemented in server
157+ /*
156158 query = qb.geospatial(
157159 qb.geoField("latLong"),
158160 qb.circle(-34, -58, 1)
@@ -203,6 +205,7 @@ public void testC_QueryPojos() throws Exception {
203205 // when this works we'll find out how many we expect
204206 assertEquals("Failed to find number of records expected", -1, numRead);
205207 assertEquals("PojoPage failed to report number of records expected", numRead, page.size());
208+ */
206209 }
207210
208211 @ Test
You can’t perform that action at this time.
0 commit comments