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 a6b9ebd commit 51dd0ddCopy full SHA for 51dd0dd
tests/operators/forecast/test_errors.py
@@ -900,11 +900,12 @@ def test_report_title(operator_setup, model):
900
yaml_i["spec"]["historical_data"]["data"] = df
901
operator_config = ForecastOperatorConfig.from_dict(yaml_i)
902
results = operate(operator_config)
903
+ title_found = False
904
with open(os.path.join(operator_setup, "report.html")) as f:
905
for line in f:
906
if "Skibidi ADS Skibidi" in line:
- return True
907
- assert False, "Report Title was not set"
+ title_found = True
908
+ assert title_found, "Report Title was not set"
909
910
911
@pytest.mark.parametrize("model", ["prophet"])
0 commit comments