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 8ce243f commit 32c660dCopy full SHA for 32c660d
plugins/src/test/java/opengrok/auth/plugin/LdapAttrPluginTest.java
@@ -178,8 +178,7 @@ void testAttrLookup() throws LdapException {
178
new AbstractLdapProvider.LdapSearchResult<>(dn, attrs);
179
assertNotNull(result);
180
// TODO use Mockito Argument captor ?
181
- when(mockProvider.lookupLdapContent(anyString(), any(String[].class))).
182
- thenReturn(result);
+ when(mockProvider.lookupLdapContent(anyString(), any(String[].class))).thenReturn(result);
183
184
// Load the LdapAttrPlugin using the mock LDAP provider.
185
LdapAttrPlugin plugin = new LdapAttrPlugin();
0 commit comments