From 7cbceab6a0cef256644acd119a615ec698200ab8 Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Mon, 27 Jun 2011 10:46:54 -0400 Subject: [PATCH] fix imports on some tests --- tests/test_http.py | 2 ++ tests/test_oauth.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/test_http.py b/tests/test_http.py index b9e9f75..bba63d8 100644 --- a/tests/test_http.py +++ b/tests/test_http.py @@ -21,6 +21,8 @@ Unit tests for the apiclient.http. __author__ = 'jcgregorio@google.com (Joe Gregorio)' +# Do not remove the httplib2 import +import httplib2 import unittest from apiclient.http import set_user_agent diff --git a/tests/test_oauth.py b/tests/test_oauth.py index 4d56c26..5b458a5 100644 --- a/tests/test_oauth.py +++ b/tests/test_oauth.py @@ -22,6 +22,8 @@ Unit tests for apiclient.oauth. __author__ = 'jcgregorio@google.com (Joe Gregorio)' +# Do not remove the httplib2 import +import httplib2 import unittest from apiclient.http import HttpMockSequence