Skip to content

Commit

Permalink
get rid of comment
Browse files Browse the repository at this point in the history
  • Loading branch information
frances-h committed Oct 25, 2023
1 parent cbfaedc commit a8e2d0f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_compute_nans(self):
out of bounds if the real data does not also containt nan values.
"""
# Setup
real_data = pd.Series([1.0, 2.4, 2.6, 0.8]) # 0.8 -> 2.6
real_data = pd.Series([1.0, 2.4, 2.6, 0.8])
real_data_nans = pd.Series([1.0, 2.4, 2.6, 0.8, np.nan])
synthetic_data = pd.Series([0.9, 1.8, 2.1, 5.0, np.nan])

Expand All @@ -67,7 +67,7 @@ def test_compute_datetime_nans(self):
datetime(2021, 9, 12),
datetime(2022, 10, 1),

], dtype='datetime64[ns]') # 0.8 -> 2.6
], dtype='datetime64[ns]')
real_data_nans = pd.Series([
datetime(2020, 10, 1),
datetime(2021, 1, 2),
Expand Down

0 comments on commit a8e2d0f

Please sign in to comment.