Skip to content

Commit 66ed5f8

Browse files
Ajit GeorgeAjit George
Ajit George
authored and
Ajit George
committed
Test correction for incorrect port number.
1 parent 5b73bbc commit 66ed5f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test-complete/src/test/java/com/marklogic/client/functionaltest/TestWriteTextDoc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static void setUp() throws Exception
3939
@Test
4040
public void testWriteTextDoc()
4141
{
42-
DatabaseClient client = DatabaseClientFactory.newClient("localhost", 8011, "admin", "admin", Authentication.DIGEST);
42+
DatabaseClient client = DatabaseClientFactory.newClient("localhost", 8015, "admin", "admin", Authentication.DIGEST);
4343

4444
String docId = "/foo/test/myFoo.txt";
4545
TextDocumentManager docMgr = client.newTextDocumentManager();

test-complete/src/test/java/com/marklogic/client/functionaltest/TestXMLDocumentRepair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void testXMLDocumentRepairFull() throws IOException
7171
out.close();
7272

7373
// create database client
74-
DatabaseClient client = DatabaseClientFactory.newClient("localhost", 8011, "rest-writer", "x", Authentication.DIGEST);
74+
DatabaseClient client = DatabaseClientFactory.newClient("localhost", 8015, "rest-writer", "x", Authentication.DIGEST);
7575

7676
// create doc id
7777
String docId = "/repair/xml/" + file.getName();

0 commit comments

Comments
 (0)