Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Feb 28, 2024
1 parent 88e9d07 commit ceb989e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@
class ContainerWithExtensionFromDirectoryIT {

@ParameterizedTest
@ValueSource(strings = {
"2020.1", // first version that provided a container image
"2024.3" // version that runs the image as a non-root user by default
})
@ValueSource(
strings = {
"2020.1", // first version that provided a container image
"2024.3", // version that runs the image as a non-root user by default
}
)
@Timeout(value = 3, unit = TimeUnit.MINUTES)
void test(final @NotNull String hivemqCeTag) throws Exception {
try (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
class ContainerWithExtensionIT {

@ParameterizedTest
@ValueSource(strings = {
"2020.1", // first version that provided a container image
"2024.3" // version that runs the image as a non-root user by default
})
@ValueSource(
strings = {
"2020.1", // first version that provided a container image
"2024.3", // version that runs the image as a non-root user by default
}
)
@Timeout(value = 3, unit = TimeUnit.MINUTES)
void test(final @NotNull String hivemqCeTag) throws Exception {
final HiveMQExtension hiveMQExtension = HiveMQExtension
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@
class ContainerWithFileInExtensionHomeIT {

@ParameterizedTest
@ValueSource(strings = {
"2020.1", // first version that provided a container image
"2024.3" // version that runs the image as a non-root user by default
})
@ValueSource(
strings = {
"2020.1", // first version that provided a container image
"2024.3", // version that runs the image as a non-root user by default
}
)
@Timeout(value = 3, unit = TimeUnit.MINUTES)
void test(final @NotNull String hivemqCeTag) throws Exception {
final HiveMQExtension hiveMQExtension = HiveMQExtension
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@
class CreateFileInExtensionDirectoryIT {

@ParameterizedTest
@ValueSource(strings = {
"2020.1", // first version that provided a container image
"2024.3" // version that runs the image as a non-root user by default
})
@ValueSource(
strings = {
"2020.1", // first version that provided a container image
"2024.3", // version that runs the image as a non-root user by default
}
)
@Timeout(value = 3, unit = TimeUnit.MINUTES)
void test(final @NotNull String hivemqCeTag) throws Exception {
final HiveMQExtension hiveMQExtension = HiveMQExtension
Expand Down

0 comments on commit ceb989e

Please sign in to comment.