diff options
author | 2012-03-01 23:23:15 +0100 | |
---|---|---|
committer | 2012-03-01 23:23:15 +0100 | |
commit | 6ce9f197f4681875a2595a5a8d86bd047f993a99 (patch) | |
tree | 0bd35db35b9fe09eccd7262fcc60b4ada5f07e44 /pygithub3/tests/services/test_users.py | |
parent | Merge branch 'docs' (diff) | |
download | python-github3-6ce9f197f4681875a2595a5a8d86bd047f993a99.tar.xz python-github3-6ce9f197f4681875a2595a5a8d86bd047f993a99.zip |
Python 2.6 compatibility
Diffstat (limited to '')
-rw-r--r-- | pygithub3/tests/services/test_users.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pygithub3/tests/services/test_users.py b/pygithub3/tests/services/test_users.py index 049197b..f777d6d 100644 --- a/pygithub3/tests/services/test_users.py +++ b/pygithub3/tests/services/test_users.py @@ -1,11 +1,10 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- -from unittest import TestCase - import requests from mock import patch, Mock +from pygithub3.tests.utils.core import TestCase from pygithub3.core.client import Client from pygithub3.services.users import User, Emails, Followers, Keys from pygithub3.exceptions import ValidationError |