Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Testcontainers name #7250

Merged
merged 1 commit into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class OutOfPackageImagePullPolicyTest {

@Test
public void shouldSupportCustomPoliciesOutOfTestContainersPackage() {
public void shouldSupportCustomPoliciesOutOfTestcontainersPackage() {
try (
GenericContainer<?> container = new GenericContainer<>(TestImages.TINY_IMAGE)
.withImagePullPolicy(
Expand Down
2 changes: 1 addition & 1 deletion modules/cassandra/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = "TestContainers :: Cassandra"
description = "Testcontainers :: Cassandra"

configurations.all {
resolutionStrategy {
Expand Down
2 changes: 1 addition & 1 deletion modules/elasticsearch/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = "TestContainers :: elasticsearch"
description = "Testcontainers :: elasticsearch"

dependencies {
api project(':testcontainers')
Expand Down
2 changes: 1 addition & 1 deletion modules/hivemq/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = "TestContainers :: HiveMQ"
description = "Testcontainers :: HiveMQ"

dependencies {
api(project(":testcontainers"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private Map<String, String> parseTmpfsOptions(Map<String, String> containerParam
}

/**
* Get the TestContainers Parameters such as Init Function, Init Script path etc.
* Get the Testcontainers Parameters such as Init Function, Init Script path etc.
*
* @return {@link Map}
*/
Expand All @@ -177,7 +177,7 @@ private Map<String, String> parseContainerParameters() {
}

/**
* Get all Query parameters specified in the Connection URL after ?. This DOES NOT include TestContainers (TC_*) parameters.
* Get all Query parameters specified in the Connection URL after ?. This DOES NOT include Testcontainers (TC_*) parameters.
*
* @return {@link Map}
*/
Expand Down
2 changes: 1 addition & 1 deletion modules/neo4j/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = "TestContainers :: Neo4j"
description = "Testcontainers :: Neo4j"

def generatedResourcesDir = new File(project.buildDir, "generated-resources")
def customNeo4jPluginDestinationDir = new File(generatedResourcesDir, "custom-plugins")
Expand Down
2 changes: 1 addition & 1 deletion modules/orientdb/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = "TestContainers :: Orientdb"
description = "Testcontainers :: Orientdb"

dependencies {
api project(":testcontainers")
Expand Down
2 changes: 1 addition & 1 deletion modules/rabbitmq/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description = "TestContainers :: RabbitMQ"
description = "Testcontainers :: RabbitMQ"

dependencies {
api project(":testcontainers")
Expand Down