aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPat Ferate <pferate@users.noreply.github.com>2016-08-11 13:18:21 -0700
committerJon Wayne Parrott <jonwayne@google.com>2016-08-11 13:18:21 -0700
commite4ad1beeb482016ed6276b4c0c6aee8a6f49b9ef (patch)
tree176cc1673578f01d4347399af7ff15cf3ba054f1 /tests
parent3614fd147a51e68548bc48295b63a96239735ac5 (diff)
downloadoauth2client-e4ad1beeb482016ed6276b4c0c6aee8a6f49b9ef.tar.gz
Remove `unittest2` from PKCE test (#624)
This test snuck by the recent removal of `unittest2`
Diffstat (limited to 'tests')
-rw-r--r--tests/test__pkce.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test__pkce.py b/tests/test__pkce.py
index 492463e..bd2c65e 100644
--- a/tests/test__pkce.py
+++ b/tests/test__pkce.py
@@ -12,13 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+import unittest
+
import mock
-import unittest2
from oauth2client import _pkce
-class PKCETests(unittest2.TestCase):
+class PKCETests(unittest.TestCase):
@mock.patch('oauth2client._pkce.os.urandom')
def test_verifier(self, fake_urandom):