()
| 322 | |
| 323 | |
| 324 | def test_pattern_fix_identities_1(): |
| 325 | pattern = Required(Argument('N'), Argument('N')) |
| 326 | assert pattern.children[0] == pattern.children[1] |
| 327 | assert pattern.children[0] is not pattern.children[1] |
| 328 | pattern.fix_identities() |
| 329 | assert pattern.children[0] is pattern.children[1] |
| 330 | |
| 331 | |
| 332 | def test_pattern_fix_identities_2(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…