diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-05-19 20:00:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 20:00:27 +0300 |
commit | db481babcfa7ebc70833e77985858e9295a3135b (patch) | |
tree | 12d0ddc95df5688213117cfb9ded9161979a7d16 /numpy/lib/tests | |
parent | 1cedba6501848a915ec9076108e319235ded7689 (diff) | |
parent | 64e3c5c519bcf3684c19037e81b62f2245420a76 (diff) | |
download | numpy-db481babcfa7ebc70833e77985858e9295a3135b.tar.gz |
Merge pull request #19226 from seberg/fix-void-cast-safety-promotion-and-comparison
API: Fix structured dtype cast-safety, promotion, and comparison
Diffstat (limited to 'numpy/lib/tests')
-rw-r--r-- | numpy/lib/tests/test_recfunctions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_recfunctions.py b/numpy/lib/tests/test_recfunctions.py index 2f3c14df3..9b2506a7c 100644 --- a/numpy/lib/tests/test_recfunctions.py +++ b/numpy/lib/tests/test_recfunctions.py @@ -835,7 +835,6 @@ class TestJoinBy: b = np.ones(3, dtype=[('c', 'u1'), ('b', 'f4'), ('a', 'i4')]) assert_raises(ValueError, join_by, ['a', 'b', 'b'], a, b) - @pytest.mark.xfail(reason="See comment at gh-9343") def test_same_name_different_dtypes_key(self): a_dtype = np.dtype([('key', 'S5'), ('value', '<f4')]) b_dtype = np.dtype([('key', 'S10'), ('value', '<f4')]) |