8000 Added tests for _get_dtype by topper-123 · Pull Request #16845 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Added tests for _get_dtype #16845

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 11, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
xfail on strings
  • Loading branch information
topper-123 authored Jul 8, 2017
commit 31cc08d11438ddacee88950e850f37e779e86d34
2 changes: 1 addition & 1 deletion pandas/tests/dtypes/test_common.py
6095
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def test_is_complex_dtype():
(float, np.dtype(float)),
('float64', np.dtype('float64')),
(np.dtype('float64'), np.dtype('float64')),
pytest.mark.xfail(str, np.dtype('<U')),
pytest.mark.xfail((str, np.dtype('<U')), ),
(pd.Series([1, 2], dtype=np.dtype('int16')), np.dtype('int16')),
(pd.Series(['a', 'b']), np.dtype(object)),
(pd.Index([1, 2]), np.dtype('int64')),
Expand Down
0