Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kovacsbalu committed Jun 28, 2016
1 parent 017e296 commit 216f91d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ python:
- "2.7"
install:
- pip install coveralls
script: coverage run --source wrc -m py.test tests.py -v
script: coverage run --source WazeRouteCalculator -m py.test tests.py -v
after_success:
coveralls
2 changes: 1 addition & 1 deletion WazeRouteCalculator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .__version__ import __version__
from .WazeRouteCalculator import WazeRouteCalculator, WRCError
from .WazeRouteCalculator import *
2 changes: 1 addition & 1 deletion tests.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

import wrc.wrc as wrc
import WazeRouteCalculator as wrc
import mock
import StringIO

Expand Down

0 comments on commit 216f91d

Please sign in to comment.