Skip to content

Commit

Permalink
Fix test_get_dataframe_with_volume_column, don't take the length of t…
Browse files Browse the repository at this point in the history
…he string
  • Loading branch information
Koen werklaptop committed Nov 11, 2024
1 parent 67c5d4e commit 803b2a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_tiingo_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_get_dataframe_with_volume_column(self):
columns=requested_column,
fmt='json')
assert len(prices) == 1
assert len(prices.columns) == len(requested_column) + 1
assert len(prices.columns) == 1

@vcr.use_cassette('tests/fixtures/ticker_price_with_multiple_columns.yaml')
def test_get_dataframe_with_multiple_columns(self):
Expand Down

0 comments on commit 803b2a9

Please sign in to comment.