(native_strings, big_strings)
| 829 | |
| 830 | |
| 831 | def is_equal_strings(native_strings, big_strings): |
| 832 | for native_slice, big_slice in zip(native_strings, big_strings): |
| 833 | assert native_slice == big_slice, f"Mismatch between `{native_slice}` and `{str(big_slice)}`" |
| 834 | |
| 835 | |
| 836 | def check_identical( |
no outgoing calls
no test coverage detected
searching dependent graphs…