Skip to content

Commit

Permalink
test: fix typo in test names (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukany committed Aug 11, 2023
1 parent 6a2bbcf commit e637aa3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_bivariate_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=4)
with pytest.raises(ValueError):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_multivariate_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=4)
with pytest.raises(ValueError):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_timeseries_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=4)
with pytest.raises(ValueError):
Expand Down

0 comments on commit e637aa3

Please sign in to comment.