Skip to content

Commit ceb989e

Browse files
committed
Fix formatting
1 parent 88e9d07 commit ceb989e

File tree

4 files changed

+24
-16
lines changed

4 files changed

+24
-16
lines changed

modules/hivemq/src/test/java/org/testcontainers/hivemq/ContainerWithExtensionFromDirectoryIT.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@
1515
class ContainerWithExtensionFromDirectoryIT {
1616

1717
@ParameterizedTest
18-
@ValueSource(strings = {
19-
"2020.1", // first version that provided a container image
20-
"2024.3" // version that runs the image as a non-root user by default
21-
})
18+
@ValueSource(
19+
strings = {
20+
"2020.1", // first version that provided a container image
21+
"2024.3", // version that runs the image as a non-root user by default
22+
}
23+
)
2224
@Timeout(value = 3, unit = TimeUnit.MINUTES)
2325
void test(final @NotNull String hivemqCeTag) throws Exception {
2426
try (

modules/hivemq/src/test/java/org/testcontainers/hivemq/ContainerWithExtensionIT.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@
1414
class ContainerWithExtensionIT {
1515

1616
@ParameterizedTest
17-
@ValueSource(strings = {
18-
"2020.1", // first version that provided a container image
19-
"2024.3" // version that runs the image as a non-root user by default
20-
})
17+
@ValueSource(
18+
strings = {
19+
"2020.1", // first version that provided a container image
20+
"2024.3", // version that runs the image as a non-root user by default
21+
}
22+
)
2123
@Timeout(value = 3, unit = TimeUnit.MINUTES)
2224
void test(final @NotNull String hivemqCeTag) throws Exception {
2325
final HiveMQExtension hiveMQExtension = HiveMQExtension

modules/hivemq/src/test/java/org/testcontainers/hivemq/ContainerWithFileInExtensionHomeIT.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424
class ContainerWithFileInExtensionHomeIT {
2525

2626
@ParameterizedTest
27-
@ValueSource(strings = {
28-
"2020.1", // first version that provided a container image
29-
"2024.3" // version that runs the image as a non-root user by default
30-
})
27+
@ValueSource(
28+
strings = {
29+
"2020.1", // first version that provided a container image
30+
"2024.3", // version that runs the image as a non-root user by default
31+
}
32+
)
3133
@Timeout(value = 3, unit = TimeUnit.MINUTES)
3234
void test(final @NotNull String hivemqCeTag) throws Exception {
3335
final HiveMQExtension hiveMQExtension = HiveMQExtension

modules/hivemq/src/test/java/org/testcontainers/hivemq/CreateFileInExtensionDirectoryIT.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@
2525
class CreateFileInExtensionDirectoryIT {
2626

2727
@ParameterizedTest
28-
@ValueSource(strings = {
29-
"2020.1", // first version that provided a container image
30-
"2024.3" // version that runs the image as a non-root user by default
31-
})
28+
@ValueSource(
29+
strings = {
30+
"2020.1", // first version that provided a container image
31+
"2024.3", // version that runs the image as a non-root user by default
32+
}
33+
)
3234
@Timeout(value = 3, unit = TimeUnit.MINUTES)
3335
void test(final @NotNull String hivemqCeTag) throws Exception {
3436
final HiveMQExtension hiveMQExtension = HiveMQExtension

0 commit comments

Comments
 (0)