Skip to content

Commit

Permalink
Fix test for simplever (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli authored Dec 28, 2020
1 parent 0b10bff commit 02867d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_match.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def test_semver():
assert version_strategy("20.1.0") != AwesomeVersionStrategy.SEMVER


def test_semver():
"""Test semver."""
def test_simplever():
"""Test simplever."""
assert version_strategy("1.2.3.4.5") == AwesomeVersionStrategy.SIMPLEVER
assert version_strategy("20.1.0") != AwesomeVersionStrategy.SIMPLEVER

Expand Down

0 comments on commit 02867d2

Please sign in to comment.