A version of this function which accepts numpy arrays
(a, b)
| 31 | |
| 32 | |
| 33 | def assert_identical(a, b): |
| 34 | """A version of this function which accepts numpy arrays""" |
| 35 | __tracebackhide__ = True |
| 36 | from xarray.testing import assert_identical as assert_identical_ |
| 37 | |
| 38 | if hasattr(a, "identical"): |
| 39 | assert_identical_(a, b) |
| 40 | else: |
| 41 | assert_array_equal(a, b) |
| 42 | |
| 43 | |
| 44 | def test_signature_properties() -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…