Skip to content

Commit

Permalink
Merge pull request #305 from fedora-infra/frzn
Browse files Browse the repository at this point in the history
Address times when branches would be zero
  • Loading branch information
gridhead authored Sep 18, 2024
2 parents 925c8b3 + 4f20189 commit 9264115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ def test_fetch_and_extract_database(setup_environment):
def test_list_branches(dvlpstat):
rsltobjc = main.list_branches(dvlpstat)
assert isinstance(rsltobjc, list) # noqa : S101
assert len(rsltobjc) > 0 # noqa : S101
assert len(rsltobjc) >= 0 # noqa : S101

0 comments on commit 9264115

Please sign in to comment.