1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

rearrenged whitespaces and blank lines to make pep8 checker happy

This commit is contained in:
Hugo Lopes Tavares 2010-08-19 10:39:50 -03:00
parent f92b5e5713
commit 3635f17adf
3 changed files with 3 additions and 2 deletions

View file

@ -51,7 +51,7 @@ def test_command_line_append_flags():
def test_command_line_appends_correctly(): def test_command_line_appends_correctly():
""" """
Test multiple appending options set by environmental variables. Test multiple appending options set by environmental variables.
""" """
environ = clear_environ(os.environ.copy()) environ = clear_environ(os.environ.copy())
@ -63,7 +63,6 @@ def test_command_line_appends_correctly():
assert "Analyzing links from page http://example.com" in result.stdout assert "Analyzing links from page http://example.com" in result.stdout
def test_config_file_override_stack(): def test_config_file_override_stack():
""" """
Test config files (global, overriding a global config with a Test config files (global, overriding a global config with a

View file

@ -445,6 +445,7 @@ def assert_all_changes(start_state, end_state, expected_changes):
# Don't throw away this potentially useful information # Don't throw away this potentially useful information
return diff return diff
def _create_test_package(env): def _create_test_package(env):
mkdir('version_pkg') mkdir('version_pkg')
version_pkg_path = env.scratch_path/'version_pkg' version_pkg_path = env.scratch_path/'version_pkg'

View file

@ -27,6 +27,7 @@ def test_git_with_branch_name_as_revision():
version = env.run('version_pkg') version = env.run('version_pkg')
assert 'some different version' in version.stdout assert 'some different version' in version.stdout
def test_git_with_tag_name_as_revision(): def test_git_with_tag_name_as_revision():
""" """
Git backend should be able to install from tag names Git backend should be able to install from tag names