Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Remove debugging lines from cli test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Gillies committed Aug 6, 2015
1 parent 7916e29 commit 01fd01b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,8 @@ def test_cli_geocode_fwd_env_token():
runner = CliRunner()
result = runner.invoke(
main_group,
['geocodex', '1600 pennsylvania ave nw'],
env={'MapboxAccessToken': 'bogus'},
catch_exceptions=False)
import pdb; pdb.set_trace()
['geocode', '1600 pennsylvania ave nw'],
env={'MapboxAccessToken': 'bogus'})
assert result.exit_code == 0
assert result.output == '{"query": ["1600", "pennsylvania", "ave", "nw"]}\n'

Expand Down

0 comments on commit 01fd01b

Please sign in to comment.