We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00e0f3e commit 2429ec5Copy full SHA for 2429ec5
pandas/tests/frame/test_convert_to.py
@@ -179,4 +179,4 @@ def test_to_records_with_unicode_index(self):
179
result = DataFrame([{u'a': u'x', u'b': 'y'}]).set_index(u'a')\
180
.to_records()
181
expected = np.rec.array([('x', 'y')], dtype=[('a', 'O'), ('b', 'O')])
182
- tm.assert_numpy_array_equal(result, expected)
+ tm.assert_almost_equal(result, expected)
0 commit comments