(left, right)
| 39 | |
| 40 | |
| 41 | def assert_numpy_array_equal(left, right): |
| 42 | left_na = pd.isna(left) |
| 43 | right_na = pd.isna(right) |
| 44 | np.testing.assert_array_equal(left_na, right_na) |
| 45 | |
| 46 | left_valid = left[~left_na] |
| 47 | right_valid = right[~right_na] |
| 48 | np.testing.assert_array_equal(left_valid, right_valid) |
| 49 | |
| 50 | |
| 51 | def makeDataFrame(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…