DATAMONGO-2571 - Polishing.

Fix test method visibility.
This commit is contained in:
Mark Paluch
2020-07-15 15:45:11 +02:00
parent 6a8609c7f8
commit 4f7d3131c5

View File

@@ -63,7 +63,7 @@ public class ClientSessionTests {
MongoClient client;
@Before
void setUp() {
public void setUp() {
client = MongoTestUtils.replSetClient();
@@ -74,7 +74,7 @@ public class ClientSessionTests {
}
@Test // DATAMONGO-1880
void shouldApplyClientSession() {
public void shouldApplyClientSession() {
ClientSession session = client.startSession(ClientSessionOptions.builder().causallyConsistent(true).build());
@@ -91,7 +91,7 @@ public class ClientSessionTests {
}
@Test // DATAMONGO-2241
void shouldReuseConfiguredInfrastructure() {
public void shouldReuseConfiguredInfrastructure() {
ClientSession session = client.startSession(ClientSessionOptions.builder().causallyConsistent(true).build());