Skip to content

Commit b50c0ef

Browse files
committed
MLE-23425 Fixing compile error in test
1 parent 27c25c4 commit b50c0ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ml-app-deployer/src/test/java/com/marklogic/mgmt/ManageClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void determineUsernameForSecurityUserRequest() {
2626

2727
@Test
2828
void nullManageConfig() {
29-
ManageClient client = new ManageClient(null);
29+
ManageClient client = new ManageClient((ManageConfig) null);
3030
NullPointerException npe = assertThrows(NullPointerException.class, () -> new DatabaseManager(client).getAsXml());
3131
assertEquals("A ManageConfig instance must be provided", npe.getMessage(),
3232
"It's possible to pass in null as the ManageConfig since there's still a setManageConfig method, but that's been " +

0 commit comments

Comments
 (0)