Skip to content

Commit d3372c6

Browse files
authored
Merge pull request #1466 from marklogic/feature/58137-fix
Un-ignoring test now that 58137 is fixed
2 parents 4bb9c88 + 07627f9 commit d3372c6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

marklogic-client-api/src/test/java/com/marklogic/client/test/rows/UpdateUseCasesTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
import com.marklogic.client.row.RowRecord;
1212
import com.marklogic.client.test.Common;
1313
import com.marklogic.client.type.PlanSystemColumn;
14-
import org.junit.Ignore;
1514
import org.junit.Test;
1615

1716
import java.util.ArrayList;
@@ -100,7 +99,7 @@ public void notExistsJoin() {
10099

101100
List<RowRecord> rows = resultRows(plan);
102101
assertEquals("Only doc2 should be returned; doc1 should have been filtered out by the notExistsJoin " +
103-
"since it already exists", 1, rows.size());
102+
"since it already exists", 1, rows.size());
104103
assertEquals("/acme/doc2.json", rows.get(0).getString("uri"));
105104

106105
// doc1 should not have been modified since it was filtered out from the plan
@@ -173,7 +172,6 @@ public void wrapContentInEnvelope() {
173172
}
174173

175174
@Test
176-
@Ignore("See https://bugtrack.marklogic.com/58137")
177175
public void writeNewDocsFromView() {
178176
if (!Common.markLogicIsVersion11OrHigher()) {
179177
return;

0 commit comments

Comments
 (0)