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 Feb 2, 2024
1 parent fa10578 commit 4710e3f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -445,16 +445,16 @@ public void testCreateTaskTemplateForRunnableTask() {
@Test
public void testCreateTaskTemplateForRunnableTaskWith$Name() {
// given
RunnableTask task = createRunnableTask("NameWith$AsTaskName",null, List.of());
RunnableTask task = createRunnableTask("NameWith$AsTaskName", null, List.of());
String image = "my-image";
Resources expectedResources = Resources.builder().build();

// when
TaskTemplate result = ProjectClosure.createTaskTemplateForRunnableTask(task, image);


// then
assertTrue(result.container().args().stream().anyMatch(s -> s.contains("NameWith\\$AsTaskName")));
assertTrue(
result.container().args().stream().anyMatch(s -> s.contains("NameWith\\$AsTaskName")));
}

@Test
Expand Down

0 comments on commit 4710e3f

Please sign in to comment.