Skip to content

Commit

Permalink
patching tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
lockefox committed Aug 29, 2017
1 parent d622781 commit bb103fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_prosper_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ def test_version_from_file_default():
def test_version_from_file_happypath():
"""validate version matches expectation"""
#TODO: meaningless test?
assert p_version._version_from_file(PROJECT_HERE_PATH) == version.__version__
version_from_file = p_version._version_from_file(PROJECT_HERE_PATH)
version_from_file = version_from_file.replace('v', '')
assert version_from_file == version.__version__

def test_travis_tag_testmode():
"""validate testmode can reach expected path"""
Expand Down

0 comments on commit bb103fa

Please sign in to comment.