Skip to content

Commit b8bd7e4

Browse files
committed
MLE-12708 Re-enabling test
Bug was fixed in the server.
1 parent a398a93 commit b8bd7e4

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

marklogic-client-api/src/test/java/com/marklogic/client/test/SPARQLManagerTest.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030

3131
import static org.junit.jupiter.api.Assertions.*;
3232

33-
public class SPARQLManagerTest {
33+
class SPARQLManagerTest {
34+
3435
private static String graphUri = "http://marklogic.com/java/SPARQLManagerTest";
3536
private static String triple1 = "<http://example.org/s1> <http://example.org/p1> <http://example.org/o1>.";
3637
private static String triple2 = "<http://example.org/s2> <http://example.org/p2> <http://example.org/o2>.";
@@ -362,10 +363,6 @@ public void testSPARQLWithBindings() throws Exception {
362363

363364
@Test
364365
public void testPagination() {
365-
if (Common.getMarkLogicVersion().getMajor() >= 12) {
366-
// Disabled until MLE-12708 is fixed.
367-
return;
368-
}
369366
SPARQLQueryDefinition qdef1 = smgr.newQueryDefinition(
370367
"SELECT ?s ?p ?o FROM <" + graphUri + "> { ?s ?p ?o }");
371368
qdef1.setIncludeDefaultRulesets(false);

0 commit comments

Comments
 (0)