Skip to content
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

TST: Use pytest #13856

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
TST: Test consistency change
  • Loading branch information
TomAugspurger committed Feb 10, 2017
commit a63839049eca273aabae0cb8983dc108a256f38e
4 changes: 2 additions & 2 deletions pandas/tests/frame/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ def empty(self):

@cache_readonly
def ts1(self):
return tm.makeTimeSeries()
return tm.makeTimeSeries(nper=30)

@cache_readonly
def ts2(self):
return tm.makeTimeSeries()[5:]
return tm.makeTimeSeries(nper=30)[5:]

@cache_readonly
def simple(self):
Expand Down