Browse Source

Reduce visibility for JdbcOneTimeTokenServiceTests

Issue gh-15735
pull/15875/head
Rob Winch 1 year ago
parent
commit
c4b60cd080
  1. 4
      core/src/test/java/org/springframework/security/authentication/ott/JdbcOneTimeTokenServiceTests.java

4
core/src/test/java/org/springframework/security/authentication/ott/JdbcOneTimeTokenServiceTests.java

@ -42,7 +42,7 @@ import static org.mockito.Mockito.mock; @@ -42,7 +42,7 @@ import static org.mockito.Mockito.mock;
*
* @author Max Batischev
*/
public class JdbcOneTimeTokenServiceTests {
class JdbcOneTimeTokenServiceTests {
private static final String USERNAME = "user";
@ -64,7 +64,7 @@ public class JdbcOneTimeTokenServiceTests { @@ -64,7 +64,7 @@ public class JdbcOneTimeTokenServiceTests {
}
@AfterEach
public void tearDown() throws Exception {
void tearDown() throws Exception {
this.db.shutdown();
this.oneTimeTokenService.destroy();
}

Loading…
Cancel
Save