From 35631665b1d2e99e22bcd9f61ba849a5182ab4d4 Mon Sep 17 00:00:00 2001 From: Andres Gomez Ferrer Date: Mon, 31 Jul 2023 15:59:42 +0200 Subject: [PATCH] Fix format Signed-off-by: Andres Gomez Ferrer --- .../src/test/java/org/flyte/jflyte/ProjectClosureTest.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/jflyte/src/test/java/org/flyte/jflyte/ProjectClosureTest.java b/jflyte/src/test/java/org/flyte/jflyte/ProjectClosureTest.java index 20a0dc603..a927b89c5 100644 --- a/jflyte/src/test/java/org/flyte/jflyte/ProjectClosureTest.java +++ b/jflyte/src/test/java/org/flyte/jflyte/ProjectClosureTest.java @@ -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 @@ -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(