Skip to content

Commit

Permalink
fixing spotless violations
Browse files Browse the repository at this point in the history
  • Loading branch information
pkarthik1901 committed Dec 4, 2024
1 parent 38266e7 commit f16d928
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ void constructionWithBuilderCorrectlyPopulatesAllFields() {
@Test
void constructionWithBuilderCorrectlyPopulatesForTypeFlowInput() {
APIManager apiManager = Mockito.mock(APIManager.class);
Application producerApplicationId = Application.builder().sealId("123456").build();
Application[] consumerApplicationId = new Application[] {Application.builder().sealId("456789").build()};
Application producerApplicationId =
Application.builder().sealId("123456").build();
Application[] consumerApplicationId =
new Application[] {Application.builder().sealId("456789").build()};
Map<String, Object> varArgs = new HashMap<>();
varArgs.put("key1", "value1");
Dataset d = Dataset.builder()
Expand Down Expand Up @@ -82,8 +84,10 @@ void constructionWithBuilderCorrectlyPopulatesForTypeFlowInput() {
@Test
void constructionWithBuilderCorrectlyPopulatesForTypeFlowOutput() {
APIManager apiManager = Mockito.mock(APIManager.class);
Application producerApplicationId = Application.builder().sealId("123456").build();
Application[] consumerApplicationId = new Application[] {Application.builder().sealId("456789").build()};
Application producerApplicationId =
Application.builder().sealId("123456").build();
Application[] consumerApplicationId =
new Application[] {Application.builder().sealId("456789").build()};
Map<String, Object> varArgs = new HashMap<>();
varArgs.put("key1", "value1");
Dataset d = Dataset.builder()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package io.github.jpmorganchase.fusion.model;

import org.junit.jupiter.api.Test;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.is;

import org.junit.jupiter.api.Test;

public class FlowTest {

@Test
Expand Down

0 comments on commit f16d928

Please sign in to comment.