Fix test_get_dataframe_with_volume_column, don't take the length of the string

This commit is contained in:
Koen werklaptop
2024-11-11 20:23:29 +01:00
parent 67c5d4e3a8
commit 803b2a9c5e

View File

@@ -122,7 +122,7 @@ class TestTiingoWithPython(TestCase):
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):