Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gtalarico committed May 2, 2018
1 parent 91479ce commit 2e64633
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pipenv_pipes/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ def launch_env(environment):


def _print_project_list(environments, verbose):
""" Prints Enviroments List """
header = '[ Pipenv Enviroments ] '
""" Prints Environments List """
header = '[ Pipenv Environments ] '
if verbose:
header += ' {}'.format(PIPENV_HOME)
click.echo(click.style(header, fg='white', bold=True))
Expand Down
4 changes: 2 additions & 2 deletions tests/test_pipenv_pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_command_line_interface():
runner = CliRunner()
result = runner.invoke(cli.pipes)
assert result.exit_code == 0
assert 'Pipenv Projects' in result.output
assert 'Pipenv Environments' in result.output
help_result = runner.invoke(cli.pipes, ['--help'])
assert help_result.exit_code == 0
assert '--help Show this message and exit.' in help_result.output
assert 'Show this message and exit.' in help_result.output

0 comments on commit 2e64633

Please sign in to comment.