Skip to content

Commit

Permalink
Polish spring-boot-smoke-test-data-mongo
Browse files Browse the repository at this point in the history
Remove `@ImportAutoConfiguration(SslAutoConfiguration.class)`.
`SslAutoConfiguration.class` is already provided as a auto-configuration
with `@SpringBootTest`
  • Loading branch information
eddumelendez committed May 26, 2023
1 parent eb9077d commit a209b28
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@
import org.testcontainers.junit.jupiter.Testcontainers;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
import org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.testcontainers.service.connection.ServiceConnection;
import org.springframework.data.mongodb.core.MongoTemplate;
Expand All @@ -40,7 +38,6 @@
"spring.ssl.bundle.pem.client.keystore.certificate=classpath:ssl/test-client.crt",
"spring.ssl.bundle.pem.client.keystore.private-key=classpath:ssl/test-client.key",
"spring.ssl.bundle.pem.client.truststore.certificate=classpath:ssl/test-ca.crt" })
@ImportAutoConfiguration(SslAutoConfiguration.class)
class SampleMongoApplicationSslTests {

@Container
Expand Down

0 comments on commit a209b28

Please sign in to comment.