Skip to content

Commit

Permalink
[Bugfix] Removes Charting Integration Test For Chart That Doesn't Exi…
Browse files Browse the repository at this point in the history
…st (#6265)

* Remove a test for a chart that doesn't exist.

* black
  • Loading branch information
deeleeramone authored Mar 30, 2024
1 parent ce52ef3 commit 7640556
Showing 1 changed file with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,25 +60,6 @@ def test_charting_equity_price_historical(params, obb):
assert isinstance(result.chart.fig, OpenBBFigure)


@parametrize(
"params",
[
({"symbol": "AAPL", "limit": 100, "chart": "True"}),
],
)
@pytest.mark.integration
def test_charting_equity_fundamental_multiples(params, obb):
"""Test chart equity multiples."""
params = {p: v for p, v in params.items() if v}

result = obb.equity.fundamental.multiples(**params)
assert result
assert isinstance(result, OBBject)
assert len(result.results) > 0
assert result.chart.content
assert isinstance(result.chart.fig, OpenBBFigure)


@parametrize(
"params",
[
Expand Down

0 comments on commit 7640556

Please sign in to comment.