summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-03-07 04:27:10 +0900
committerGitHub <noreply@github.com>2023-03-06 14:27:10 -0500
commit2e841b34d449b2e80720ac6dedcfbddd3071a764 (patch)
treed68a6bb86be715a0a9b435146f6a930809a1a07c
parentf0d8fa65e5116ca7c536cdfade2d4a43d811fc84 (diff)
Fix typo in conftest.py (#4406)
fuction -> function Co-authored-by: James Maslek <jmaslek11@gmail.com>
-rw-r--r--tests/openbb_terminal/forecast/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/openbb_terminal/forecast/conftest.py b/tests/openbb_terminal/forecast/conftest.py
index f1b8632722b..6c984bbc956 100644
--- a/tests/openbb_terminal/forecast/conftest.py
+++ b/tests/openbb_terminal/forecast/conftest.py
@@ -34,7 +34,7 @@ def test_model(model, data, *args, **kwargs):
return predict_list, MAPE
-# make same fuction but for anomaly detection model
+# make same function but for anomaly detection model
def test_anom_model(model, data, *args, **kwargs):
ticker_series, anom_score, binary_anom = model(data, *args, **kwargs)
return ticker_series, anom_score, binary_anom