Skip to content

Commit 7d5baf9

Browse files
authored
Merge branch 'master' into fix-tests
2 parents d32ba08 + 5461efc commit 7d5baf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/graph-traversal.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ describe('Depth First Search', () => {
157157
expect(DFS).to.be.a('function');
158158
});
159159

160-
it('should return the node with the value of `searchFor` stored in its name property', () => {
160+
it('should return the node with the value of `searchFor` stored in its `name` property', () => {
161161
expect(DFS(A, "D").value).to.equal("JSON");
162162
expect(DFS(A, "D").name).to.equal("D");
163163
expect(DFS(A, "F").value).to.equal("Nigel");

0 commit comments

Comments
 (0)