Skip to content

Commit

Permalink
TST: Fix sparse quantile test
Browse files Browse the repository at this point in the history
  • Loading branch information
Licht-T committed Sep 15, 2017
1 parent e23272e commit 2d94fba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/sparse/test_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -1706,7 +1706,7 @@ def test_where_with_bool_data_and_complex_other(self):

def test_quantile(self):
# GH 17386
data = [[1, 1], [2, 10], [3, 100], [4, 100]]
data = [[1, 1], [2, 10], [3, 100], [nan, nan]]
q = 0.1

sparse_df = SparseDataFrame(data)
Expand All @@ -1719,7 +1719,7 @@ def test_quantile(self):

def test_quantile_multi(self):
# GH 17386
data = [[1, 1], [2, 10], [3, 100], [4, 100]]
data = [[1, 1], [2, 10], [3, 100], [nan, nan]]
q = [0.1, 0.5]

sparse_df = SparseDataFrame(data)
Expand Down

0 comments on commit 2d94fba

Please sign in to comment.