Skip to content

Commit

Permalink
Update test_get_series_exp_cache.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SermetPekin authored Sep 4, 2024
1 parent ad98091 commit 53ab17a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions evdspy/EVDSlocal/tests/test_get_series_exp_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ def test_get_proxies_env_helper(capsys):
"""

with capsys.disabled():
df = get_series(
index, cache=False, start_date="02-01-2017", end_date="31-12-2017"
)
print(df.head())
res = get_series_exp(
index, cache=False, start_date="02-01-2017", end_date="31-12-2017"
)

# assert df == res.data
print(res.data)
assert res.data.shape == df.shape
# assert res.data.values == df.values
df = get_series(
index, cache=False, start_date="02-01-2017", end_date="31-12-2017"
)
print(df.head())
res = get_series_exp(
index, cache=False, start_date="02-01-2017", end_date="31-12-2017"
)

# assert df == res.data
print(res.data)
assert res.data.shape == df.shape
# assert res.data.values == df.values

0 comments on commit 53ab17a

Please sign in to comment.