Skip to content

Commit d368e6c

Browse files
committed
align test with changes for #173
1 parent 2453b29 commit d368e6c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/com/marklogic/client/test/BitemporalTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,13 @@ public void test1() {
9797
String docId = "test-" + uniqueTerm + ".xml";
9898
XMLDocumentManager docMgr = Common.client.newXMLDocumentManager();
9999
StringHandle handle1 = new StringHandle(version1).withFormat(Format.XML);
100-
docMgr.write(docId, null, handle1, null, null, temporalCollection, null);
100+
docMgr.write(docId, null, handle1, null, null, temporalCollection);
101101
StringHandle handle2 = new StringHandle(version2).withFormat(Format.XML);
102-
docMgr.write(docId, null, handle2, null, null, temporalCollection, null);
102+
docMgr.write(docId, null, handle2, null, null, temporalCollection);
103103
StringHandle handle3 = new StringHandle(version3).withFormat(Format.XML);
104-
docMgr.write(docId, null, handle3, null, null, temporalCollection, null);
104+
docMgr.write(docId, null, handle3, null, null, temporalCollection);
105105
StringHandle handle4 = new StringHandle(version4).withFormat(Format.XML);
106-
docMgr.write(docId, null, handle4, null, null, temporalCollection, null);
106+
docMgr.write(docId, null, handle4, null, null, temporalCollection);
107107

108108
DocumentPage readResults = docMgr.read(docId);
109109
assertEquals("Wrong number of results", 1, readResults.size());

0 commit comments

Comments
 (0)