aboutsummaryrefslogtreecommitdiff
path: root/guava-tests/test/com/google/common/graph/ConfigurableDirectedGraphTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava-tests/test/com/google/common/graph/ConfigurableDirectedGraphTest.java')
-rw-r--r--guava-tests/test/com/google/common/graph/ConfigurableDirectedGraphTest.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/guava-tests/test/com/google/common/graph/ConfigurableDirectedGraphTest.java b/guava-tests/test/com/google/common/graph/ConfigurableDirectedGraphTest.java
index 80533fc10..ed998eb42 100644
--- a/guava-tests/test/com/google/common/graph/ConfigurableDirectedGraphTest.java
+++ b/guava-tests/test/com/google/common/graph/ConfigurableDirectedGraphTest.java
@@ -59,9 +59,8 @@ public class ConfigurableDirectedGraphTest extends ConfigurableSimpleDirectedGra
putEdge(N1, N1);
assertThat(graph.incidentEdges(N1)).containsExactly(EndpointPair.ordered(N1, N1));
putEdge(N1, N2);
- assertThat(graph.incidentEdges(N1)).containsExactly(
- EndpointPair.ordered(N1, N1),
- EndpointPair.ordered(N1, N2));
+ assertThat(graph.incidentEdges(N1))
+ .containsExactly(EndpointPair.ordered(N1, N1), EndpointPair.ordered(N1, N2));
}
@Test