Skip to content

Commit 264da5a

Browse files
committed
Instance-level SearchControls
TestLdap does not need SearchControls to be static. Changing it to be instance-level removes potential collisions. Issue gh-465
1 parent 44c9d5c commit 264da5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: odm/src/test/java/org/springframework/ldap/odm/test/TestLdap.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public final class TestLdap {
8787
// Maximum time to wait for results in testing (ms)
8888
private static final int TIME_LIMIT=60000;
8989

90-
private static SearchControls searchControls=
90+
private SearchControls searchControls =
9191
new SearchControls(SearchControls.SUBTREE_SCOPE,
9292
COUNT_LIMIT,
9393
TIME_LIMIT,

0 commit comments

Comments
 (0)