Skip to content

Commit f7519a6

Browse files
committed
updated with a test key
1 parent 0a4fce5 commit f7519a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-complete/src/test/java/com/marklogic/javaclient/TestPOJOReadWrite1.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)