Skip to content

Commit 7008ba9

Browse files
committed
typo fixup
1 parent e87f5b8 commit 7008ba9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pandas/tests/frame/test_analytics.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def assert_bool_op_api(opname, bool_frame_with_na, float_string_frame,
233233

234234
class TestDataFrameAnalytics(object):
235235

236-
# ---------------------------------------------------------------------=
236+
# ---------------------------------------------------------------------
237237
# Correlation and covariance
238238

239239
@td.skip_if_no_scipy
@@ -502,7 +502,7 @@ def test_corrwith_kendall(self):
502502
expected = Series(np.ones(len(result)))
503503
tm.assert_series_equal(result, expected)
504504

505-
# ---------------------------------------------------------------------=
505+
# ---------------------------------------------------------------------
506506
# Describe
507507

508508
def test_bool_describe_in_mixed_frame(self):
@@ -696,7 +696,7 @@ def test_describe_tz_values(self, tz_naive_fixture):
696696
result = df.describe(include='all')
697697
tm.assert_frame_equal(result, expected)
698698

699-
# ---------------------------------------------------------------------=
699+
# ---------------------------------------------------------------------
700700
# Reductions
701701

702702
def test_stat_op_api(self, float_frame, float_string_frame):
@@ -1219,7 +1219,7 @@ def test_sum_bools(self):
12191219
bools = isna(df)
12201220
assert bools.sum(axis=1)[0] == 10
12211221

1222-
# ---------------------------------------------------------------------=
1222+
# ---------------------------------------------------------------------
12231223
# Cumulative Reductions - cumsum, cummax, ...
12241224

12251225
def test_cumsum_corner(self):
@@ -1326,7 +1326,7 @@ def test_cummax(self, datetime_frame):
13261326
cummax_xs = datetime_frame.cummax(axis=1)
13271327
assert np.shape(cummax_xs) == np.shape(datetime_frame)
13281328

1329-
# ---------------------------------------------------------------------=
1329+
# ---------------------------------------------------------------------
13301330
# Miscellanea
13311331

13321332
def test_count(self, float_frame_with_na):
@@ -1707,7 +1707,7 @@ def test_isin_empty_datetimelike(self):
17071707
result = df1_td.isin(df3)
17081708
tm.assert_frame_equal(result, expected)
17091709

1710-
# ---------------------------------------------------------------------=
1710+
# ---------------------------------------------------------------------
17111711
# Rounding
17121712

17131713
def test_round(self):
@@ -1897,7 +1897,7 @@ def test_round_nonunique_categorical(self):
18971897

18981898
tm.assert_frame_equal(result, expected)
18991899

1900-
# ---------------------------------------------------------------------=
1900+
# ---------------------------------------------------------------------
19011901
# Clip
19021902

19031903
def test_clip(self, float_frame):
@@ -2072,7 +2072,7 @@ def test_clip_with_na_args(self, float_frame):
20722072
'col_2': [np.nan, np.nan, np.nan]})
20732073
tm.assert_frame_equal(result, expected)
20742074

2075-
# ---------------------------------------------------------------------=
2075+
# ---------------------------------------------------------------------
20762076
# Matrix-like
20772077

20782078
def test_dot(self):

0 commit comments

Comments
 (0)