|
2 | 2 | import static org.assertj.core.api.Assertions.assertThat; |
3 | 3 |
|
4 | 4 | import java.util.Map; |
| 5 | + |
5 | 6 | import org.junit.jupiter.api.Disabled; |
6 | 7 | import org.junit.jupiter.api.DisplayName; |
7 | 8 | import org.junit.jupiter.api.Test; |
@@ -95,7 +96,7 @@ public void testGraphWithNodesEdgesAndAttributes() { |
95 | 96 |
|
96 | 97 | assertThat(graph.getEdges()) |
97 | 98 | .containsExactlyInAnyOrder( |
98 | | - new Edge("a", "b", Map.of("color", "blue")), |
| 99 | + new Edge("a", "b", Map.of("color", "blue")), |
99 | 100 | new Edge("b", "c")); |
100 | 101 |
|
101 | 102 | assertThat(graph.getAttributes()) |
@@ -124,11 +125,11 @@ public void testMultipleEdgesOnOneLine() { |
124 | 125 | ); |
125 | 126 |
|
126 | 127 | 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 | + ); |
132 | 133 | assertThat(graph.getAttributes()).isEmpty(); |
133 | 134 | } |
134 | 135 | } |
0 commit comments