Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Feb 16, 2016
1 parent 2f68182 commit ddc135c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_urldispatch.py
Expand Up @@ -877,7 +877,7 @@ def test_resources_abc(self):

def test_static_route_user_home(self):
here = pathlib.Path(aiohttp.__file__).parent
home = pathlib.Path('~').expanduser()
home = pathlib.Path(os.path.expanduser('~'))
if not str(here).startswith(str(home)): # pragma: no cover
self.skipTest("aiohttp folder is not placed in user's HOME")
static_dir = '~/' + str(here.relative_to(home))
Expand Down

0 comments on commit ddc135c

Please sign in to comment.