(self, n1, n2)
| 90 | |
| 91 | class Test___eq__: |
| 92 | def test_not_equal(self, n1, n2): |
| 93 | assert (n1 == n2) is False, "Different neighbors are equal." |
| 94 | def test_element_different(self, n1, n2): |
| 95 | n1.d = n2.d |
| 96 | assert (n1 == n2) is False, "Different neighbors are equal." |
nothing calls this directly
no outgoing calls
no test coverage detected