- Update the call to equals() in node_data::remove() to match the new implementation
- Add unit test for node::remove() to catch this type of bug in the future
Update node_data::remove to use new equals() method
- Update the call to equals() in node_data::remove() to match the new implementation
- Add unit test for node::remove() to catch this type of bug in the future
Update node_data::remove to use new equals() method
When the equals() function was moved to be a member of the node class, the call to equals() in node_data::remove() was not updated to match the new implementation.
Update node_test.cpp
- Fix indentation