We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50118ec commit c52cf19Copy full SHA for c52cf19
src/Dijkstra.NET.Tests/EdgeTest.cs
@@ -111,8 +111,8 @@ public void Edges_Get_TEdgeCustom_Should_Work()
111
g.Connect(1, 3, 1, "Second");
112
113
var node = g >> 1;
114
- var first = node.GetEdgeCustom(2);
115
- var second = node.GetEdgeCustom(3);
+ var first = node.GetFirstEdgeCustom(2);
+ var second = node.GetFirstEdgeCustom(3);
116
117
118
bool act = first == "First" && second == "Second";
0 commit comments