Deep nested arrays compare correctly with iterative stack.
()
| 1181 | |
| 1182 | |
| 1183 | def test_depth_1000_nested_eq() -> None: |
| 1184 | """Deep nested arrays compare correctly with iterative stack.""" |
| 1185 | a = _make_nested_singleton_array(1000) |
| 1186 | b = _make_nested_singleton_array(1000) |
| 1187 | assert RecursiveEq(a, b) |
| 1188 | |
| 1189 | |
| 1190 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected