From 9bfa49f585a102391088436de8d36583ac5c2219 Mon Sep 17 00:00:00 2001 From: n1rna Date: Sat, 19 Oct 2019 21:58:42 +0330 Subject: [PATCH] Fix missed line in test_tiingo --- tests/test_tiingo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_tiingo.py b/tests/test_tiingo.py index c8daa39..9245185 100644 --- a/tests/test_tiingo.py +++ b/tests/test_tiingo.py @@ -115,6 +115,7 @@ class TestTickerPrices(TestCase): assert any(ticker['assetType' == 'Mutual Fund' for ticker in tickers) assert any(ticker['assetType' == 'ETF' for ticker in tickers) + @vcr.use_cassette('tests/fixtures/list_stock_tickers.yaml') def test_list_multi_stock_tickers(self): tickers = self._client.list_tickers(['Stock', 'ETF']) assert len(tickers) > 1