Remove unittest2 from PKCE test (#624)
This test snuck by the recent removal of `unittest2`
This commit is contained in:
committed by
Jon Wayne Parrott
parent
3614fd147a
commit
e4ad1beeb4
@@ -12,13 +12,14 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
import unittest
|
||||||
|
|
||||||
import mock
|
import mock
|
||||||
import unittest2
|
|
||||||
|
|
||||||
from oauth2client import _pkce
|
from oauth2client import _pkce
|
||||||
|
|
||||||
|
|
||||||
class PKCETests(unittest2.TestCase):
|
class PKCETests(unittest.TestCase):
|
||||||
|
|
||||||
@mock.patch('oauth2client._pkce.os.urandom')
|
@mock.patch('oauth2client._pkce.os.urandom')
|
||||||
def test_verifier(self, fake_urandom):
|
def test_verifier(self, fake_urandom):
|
||||||
|
|||||||
Reference in New Issue
Block a user