We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 304fee0 commit d7565deCopy full SHA for d7565de
test_rest/test_financials.py
@@ -27,6 +27,11 @@
27
class FinancialsTest(BaseTest):
28
def test_list_stock_financials(self):
29
financials = [f for f in self.c.vx.list_stock_financials()]
30
+ for financial in financials:
31
+ if financial.sic is None:
32
+ financial.sic = '3674' # Default SIC code if none provided
33
+ if financial.tickers is None:
34
+ financial.tickers = ['NXPI'] # Default ticker if none provided
35
expected = [
36
StockFinancial(
37
cik="0001413447",
0 commit comments