We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27c25c4 commit b50c0efCopy full SHA for b50c0ef
ml-app-deployer/src/test/java/com/marklogic/mgmt/ManageClientTest.java
@@ -26,7 +26,7 @@ void determineUsernameForSecurityUserRequest() {
26
27
@Test
28
void nullManageConfig() {
29
- ManageClient client = new ManageClient(null);
+ ManageClient client = new ManageClient((ManageConfig) null);
30
NullPointerException npe = assertThrows(NullPointerException.class, () -> new DatabaseManager(client).getAsXml());
31
assertEquals("A ManageConfig instance must be provided", npe.getMessage(),
32
"It's possible to pass in null as the ManageConfig since there's still a setManageConfig method, but that's been " +
0 commit comments