(x, y)
| 64 | |
| 65 | |
| 66 | def assertSequenceEqual(x, y): |
| 67 | if len(x) != len(y): |
| 68 | raise AssertionError(f"{x!r} should equal {y!r}") |
| 69 | if any(ix != iy for ix, iy in zip(x, y)): |
| 70 | raise AssertionError(f"{x!r} should equal {y!r}") |
| 71 | |
| 72 | |
| 73 | @contextlib.contextmanager |
no test coverage detected
searching dependent graphs…