Skip to content

Commit

Permalink
updates tests to take new version tags into account
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraschauer authored and copernico committed Jul 4, 2024
1 parent 5a806df commit 2633695
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion prospector/git/git_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_get_tags_for_commit(repository: Git):
if commit is not None:
tags = commit.find_tags()
print(tags)
assert len(tags) == 106
assert len(tags) >= 106
assert "10.2" in tags and "11.3" in tags and "9.4" in tags


Expand Down
2 changes: 1 addition & 1 deletion prospector/git/raw_commit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def commit():

def test_find_tags(commit: RawCommit):
tags = commit.find_tags()
assert len(tags) == 106
assert len(tags) >= 106
assert "10.2" in tags and "11.3" in tags and "9.4" in tags


Expand Down

0 comments on commit 2633695

Please sign in to comment.