Skip to content

Commit 0736614

Browse files
Revert "DOC: test organization (#37637)"
This reverts commit a3d6ad8.
1 parent a000ca9 commit 0736614

File tree

3 files changed

+0
-153
lines changed

3 files changed

+0
-153
lines changed

doc/source/development/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Development
1616
code_style
1717
maintaining
1818
internals
19-
test_writing
2019
extending
2120
developer
2221
policies

doc/source/development/test_writing.rst

-147
This file was deleted.

pandas/tests/series/methods/test_item.py

-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
1-
"""
2-
Series.item method, mainly testing that we get python scalars as opposed to
3-
numpy scalars.
4-
"""
51
import pytest
62

73
from pandas import Series, Timedelta, Timestamp, date_range
84

95

106
class TestItem:
117
def test_item(self):
12-
# We are testing that we get python scalars as opposed to numpy scalars
138
ser = Series([1])
149
result = ser.item()
1510
assert result == 1

0 commit comments

Comments
 (0)