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 7ca3162 commit f62871dCopy full SHA for f62871d
test/graphs/shortest-path/bellman-ford.spec.js
@@ -21,7 +21,7 @@ describe('Bellman-Ford', function () {
21
var vs = [new Vertex(1)];
22
var e = [];
23
expect(bellmanFord(vs, e, vs[0]))
24
- .toEqual({ parents: { '1': null }, distances: { '1': 0 }});
+ .toEqual({ parents: { 1: null }, distances: { 1: 0 }});
25
});
26
27
it('should work in the general case', function () {
0 commit comments