Skip to content

Commit

Permalink
Merge pull request #532 from pnasrat/develop
Browse files Browse the repository at this point in the history
Add assertion message for improved debugging of flaky test
  • Loading branch information
pnasrat committed May 15, 2012
2 parents b5e7cde + f68b1d2 commit e0db44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def test_editable_git_upgrade():
_change_test_package_version(env, version_pkg_path)
run_pip('install', '-e', '%s#egg=version_pkg' % ('git+file://' + version_pkg_path))
version2 = env.run('version_pkg')
assert 'some different version' in version2.stdout
assert 'some different version' in version2.stdout, "Output: %s" % (version2.stdout)


def test_should_not_install_always_from_cache():
Expand Down

0 comments on commit e0db44e

Please sign in to comment.