Skip to content

Commit c2b1d64

Browse files
committed
undone edge Expressions
1 parent cd15e52 commit c2b1d64

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/QuikGraph.Tests/Extensions/GraphExtensionsTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -783,11 +783,11 @@ public void ToAdjacencyGraph_EdgeArray()
783783
var graph = edges.ToAdjacencyGraph();
784784
AssertEmptyGraph(graph);
785785

786-
edges =
787-
[
786+
edges = new []
787+
{
788788
new[] {1, 2, 3},
789-
[2, 3, 1]
790-
];
789+
new[] {2, 3, 1}
790+
};
791791
graph = edges.ToAdjacencyGraph();
792792
AssertHasVertices(graph, new List<int> { 1, 2, 3 }.AsReadOnly());
793793
AssertHasEdges(

0 commit comments

Comments
 (0)