wenima / data-structures

used for all data structure assignments
1 stars 0 forks source link

change == None to is None in test_linked_list.py #5

Closed wenima closed 7 years ago

wenima commented 7 years ago
+    from linked_list import Node
+    node2 = Node("Something")
+    assert node2.value == "Something" and node2.nxt == None

This would be better as node2.value == "Something" and node2.nxt is None

CCallahanIV commented 7 years ago

Done.