Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Gomez Ferrer <[email protected]>
  • Loading branch information
andresgomezfrr committed Jul 31, 2023
1 parent 25a41d3 commit 3563166
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jflyte/src/test/java/org/flyte/jflyte/ProjectClosureTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,8 @@ public void testCreateTaskTemplateForRunnableTaskWithResources() {
public void testCreateTaskTemplateForRunnableTaskWithCustomJavaToolOptions() {
// given
RunnableTask task =
createRunnableTask(Resources.builder().build(), List.of("-CustomFlag", "-AnotherCustomFlag"));
createRunnableTask(
Resources.builder().build(), List.of("-CustomFlag", "-AnotherCustomFlag"));
String image = "my-image";

// when
Expand All @@ -486,7 +487,8 @@ public void testCreateTaskTemplateForRunnableTaskWithCustomJavaToolOptions() {
assertThat(
container.env(),
equalTo(
ImmutableList.of(KeyValuePair.of("JAVA_TOOL_OPTIONS", "-CustomFlag -AnotherCustomFlag"))));
ImmutableList.of(
KeyValuePair.of("JAVA_TOOL_OPTIONS", "-CustomFlag -AnotherCustomFlag"))));
assertThat(
result.interface_(),
equalTo(
Expand Down

0 comments on commit 3563166

Please sign in to comment.