Skip to content

Commit 3a57f36

Browse files
committed
Fix formating
1 parent 6c417de commit 3a57f36

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

exercises/practice/dot-dsl/src/test/java/GraphTest.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import static org.assertj.core.api.Assertions.assertThat;
33

44
import java.util.Map;
5+
56
import org.junit.jupiter.api.Disabled;
67
import org.junit.jupiter.api.DisplayName;
78
import org.junit.jupiter.api.Test;
@@ -95,7 +96,7 @@ public void testGraphWithNodesEdgesAndAttributes() {
9596

9697
assertThat(graph.getEdges())
9798
.containsExactlyInAnyOrder(
98-
new Edge("a", "b", Map.of("color", "blue")),
99+
new Edge("a", "b", Map.of("color", "blue")),
99100
new Edge("b", "c"));
100101

101102
assertThat(graph.getAttributes())
@@ -124,11 +125,11 @@ public void testMultipleEdgesOnOneLine() {
124125
);
125126

126127
assertThat(graph.getEdges())
127-
.containsExactlyInAnyOrder(
128-
new Edge("a", "b", Map.of("style", "dotted")),
129-
new Edge("b", "c", Map.of("style", "dotted")),
130-
new Edge("c", "d", Map.of("style", "dotted"))
131-
);
128+
.containsExactlyInAnyOrder(
129+
new Edge("a", "b", Map.of("style", "dotted")),
130+
new Edge("b", "c", Map.of("style", "dotted")),
131+
new Edge("c", "d", Map.of("style", "dotted"))
132+
);
132133
assertThat(graph.getAttributes()).isEmpty();
133134
}
134135
}

0 commit comments

Comments
 (0)