(self)
| 89 | self.assertIs(pooler[1], new_output) |
| 90 | |
| 91 | def test_eq_same(self): |
| 92 | outputs1 = [PoolingSequenceGroupOutput(data=1)] |
| 93 | outputs2 = [PoolingSequenceGroupOutput(data=1)] |
| 94 | pooler1 = PoolerOutput(outputs=outputs1) |
| 95 | pooler2 = PoolerOutput(outputs=outputs2) |
| 96 | self.assertTrue(pooler1 == pooler2) |
| 97 | |
| 98 | def test_eq_diff(self): |
| 99 | pooler1 = PoolerOutput(outputs=[PoolingSequenceGroupOutput(data=1)]) |
nothing calls this directly
no test coverage detected