File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test-complete/src/test/java/com/marklogic/javaclient Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,11 +223,11 @@ public void testPOJOWriteWithPojoPageReadAll() {
223223 System .out .println ("Total number of estimated results:" +p .getTotalSize ());
224224 assertEquals ("Total number of estimated pages :" ,111 ,p .getTotalPages ());
225225 System .out .println ("Total number of estimated pages :" +p .getTotalPages ());
226- assertFalse ("Is this First page :" ,p .isFirstPage ());//this is bug
226+ assertTrue ("Is this First page :" ,p .isFirstPage ());
227227 assertFalse ("Is this Last page :" ,p .isLastPage ());
228228 assertTrue ("Is this First page has content:" ,p .hasContent ());
229229 // Need the Issue #75 to be fixed
230- assertTrue ("Is first page has previous page ?" ,p .hasPreviousPage ());
230+ assertFalse ("Is first page has previous page ?" ,p .hasPreviousPage ());
231231 long pageNo =1 ,count =0 ;
232232 do {
233233 count =0 ;
You can’t perform that action at this time.
0 commit comments