From d13f27bfde3e1162aeabbb80baca15291f4fd105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Luk=C3=A1ny?= Date: Fri, 11 Aug 2023 10:56:45 +0200 Subject: [PATCH] tests: fix typo in test names --- tests/test_bivariate_analysis.py | 2 +- tests/test_multivariate_analysis.py | 2 +- tests/test_timeseries_analysis.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_bivariate_analysis.py b/tests/test_bivariate_analysis.py index cf1bdd8..1884647 100644 --- a/tests/test_bivariate_analysis.py +++ b/tests/test_bivariate_analysis.py @@ -23,7 +23,7 @@ def test_default_config_verbosity(): assert s.verbosity == Verbosity.LOW, "Verbosity should be Verbosity.LOW" -def test_high_verobisities(): +def test_high_verbosities(): with pytest.raises(ValueError): bivariate_analysis.BivariateAnalysis(verbosity=3) with pytest.raises(ValueError): diff --git a/tests/test_multivariate_analysis.py b/tests/test_multivariate_analysis.py index a10bf38..51353c6 100644 --- a/tests/test_multivariate_analysis.py +++ b/tests/test_multivariate_analysis.py @@ -37,7 +37,7 @@ def test_default_config_verbosity(): assert s.verbosity == Verbosity.LOW, "Verbosity should be Verbosity.LOW" -def test_high_verobisities(): +def test_high_verbosities(): with pytest.raises(ValueError): MultivariateAnalysis(df=get_test_df(), verbosity=3) with pytest.raises(ValueError): diff --git a/tests/test_timeseries_analysis.py b/tests/test_timeseries_analysis.py index 5825895..b1268eb 100644 --- a/tests/test_timeseries_analysis.py +++ b/tests/test_timeseries_analysis.py @@ -18,7 +18,7 @@ def test_default_config_verbosity(): assert s.verbosity == Verbosity.LOW, "Verbosity should be Verbosity.LOW" -def test_high_verobisities(): +def test_high_verbosities(): with pytest.raises(ValueError): TimeseriesAnalysis(verbosity=3) with pytest.raises(ValueError):