1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
diff --git a/tests/compute_engine/test__metadata.py b/tests/compute_engine/test__metadata.py
index 8b5eece..c376dbf 100644
--- a/tests/compute_engine/test__metadata.py
+++ b/tests/compute_engine/test__metadata.py
@@ -16,7 +16,7 @@ import datetime
import json
import os
-import mock
+from unittest import mock
import pytest
from six.moves import http_client
from six.moves import reload_module
diff --git a/tests/compute_engine/test_credentials.py b/tests/compute_engine/test_credentials.py
index 98def0f..486eb61 100644
--- a/tests/compute_engine/test_credentials.py
+++ b/tests/compute_engine/test_credentials.py
@@ -14,7 +14,7 @@
import base64
import datetime
-import mock
+from unittest import mock
import pytest
import responses
diff --git a/tests/conftest.py b/tests/conftest.py
index cf8a0f9..7b5eb1d 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -15,7 +15,7 @@
import os
import sys
-import mock
+from unittest import mock
import pytest
diff --git a/tests/crypt/test__python_rsa.py b/tests/crypt/test__python_rsa.py
index 886ee55..f2d3115 100644
--- a/tests/crypt/test__python_rsa.py
+++ b/tests/crypt/test__python_rsa.py
@@ -15,7 +15,7 @@
import json
import os
-import mock
+from unittest import mock
from pyasn1_modules import pem
import pytest
import rsa
diff --git a/tests/oauth2/test__client.py b/tests/oauth2/test__client.py
index c3ae2af..f2c22ab 100644
--- a/tests/oauth2/test__client.py
+++ b/tests/oauth2/test__client.py
@@ -16,7 +16,7 @@ import datetime
import json
import os
-import mock
+from unittest import mock
import pytest
import six
from six.moves import http_client
diff --git a/tests/oauth2/test_credentials.py b/tests/oauth2/test_credentials.py
index 76aa463..93126e1 100644
--- a/tests/oauth2/test_credentials.py
+++ b/tests/oauth2/test_credentials.py
@@ -18,7 +18,7 @@ import os
import pickle
import sys
-import mock
+from unittest import mock
import pytest
from google.auth import _helpers
diff --git a/tests/oauth2/test_id_token.py b/tests/oauth2/test_id_token.py
index ff85807..28750cc 100644
--- a/tests/oauth2/test_id_token.py
+++ b/tests/oauth2/test_id_token.py
@@ -15,7 +15,7 @@
import json
import os
-import mock
+from unittest import mock
import pytest
from google.auth import environment_vars
diff --git a/tests/oauth2/test_service_account.py b/tests/oauth2/test_service_account.py
index 897374a..70460bc 100644
--- a/tests/oauth2/test_service_account.py
+++ b/tests/oauth2/test_service_account.py
@@ -16,7 +16,7 @@ import datetime
import json
import os
-import mock
+from unittest import mock
from google.auth import _helpers
from google.auth import crypt
diff --git a/tests/test__cloud_sdk.py b/tests/test__cloud_sdk.py
index 3377604..f8063fd 100644
--- a/tests/test__cloud_sdk.py
+++ b/tests/test__cloud_sdk.py
@@ -17,7 +17,7 @@ import json
import os
import subprocess
-import mock
+from unittest import mock
import pytest
from google.auth import _cloud_sdk
diff --git a/tests/test__default.py b/tests/test__default.py
index 35000b0..8ef8b6c 100644
--- a/tests/test__default.py
+++ b/tests/test__default.py
@@ -15,7 +15,7 @@
import json
import os
-import mock
+from unittest import mock
import pytest
from google.auth import _default
diff --git a/tests/test__oauth2client.py b/tests/test__oauth2client.py
index 6b1112b..9002a40 100644
--- a/tests/test__oauth2client.py
+++ b/tests/test__oauth2client.py
@@ -16,7 +16,7 @@ import datetime
import os
import sys
-import mock
+from unittest import mock
import oauth2client.client
import oauth2client.contrib.gce
import oauth2client.service_account
diff --git a/tests/test_app_engine.py b/tests/test_app_engine.py
index 9dfdfa6..e363bad 100644
--- a/tests/test_app_engine.py
+++ b/tests/test_app_engine.py
@@ -14,7 +14,7 @@
import datetime
-import mock
+from unittest import mock
import pytest
from google.auth import app_engine
diff --git a/tests/test_iam.py b/tests/test_iam.py
index c98a138..9555592 100644
--- a/tests/test_iam.py
+++ b/tests/test_iam.py
@@ -16,7 +16,7 @@ import base64
import datetime
import json
-import mock
+from unittest import mock
import pytest
from six.moves import http_client
diff --git a/tests/test_impersonated_credentials.py b/tests/test_impersonated_credentials.py
index 31075ca..175cd56 100644
--- a/tests/test_impersonated_credentials.py
+++ b/tests/test_impersonated_credentials.py
@@ -16,7 +16,7 @@ import datetime
import json
import os
-import mock
+from unittest import mock
import pytest
from six.moves import http_client
diff --git a/tests/test_jwt.py b/tests/test_jwt.py
index 488aee4..5a8cb50 100644
--- a/tests/test_jwt.py
+++ b/tests/test_jwt.py
@@ -17,7 +17,7 @@ import datetime
import json
import os
-import mock
+from unittest import mock
import pytest
from google.auth import _helpers
diff --git a/tests/transport/test__mtls_helper.py b/tests/transport/test__mtls_helper.py
index 5bf1967..1d0ad26 100644
--- a/tests/transport/test__mtls_helper.py
+++ b/tests/transport/test__mtls_helper.py
@@ -15,7 +15,7 @@
import os
import re
-import mock
+from unittest import mock
import pytest
from google.auth.transport import _mtls_helper
diff --git a/tests/transport/test_grpc.py b/tests/transport/test_grpc.py
index 5c61f96..dcf337f 100644
--- a/tests/transport/test_grpc.py
+++ b/tests/transport/test_grpc.py
@@ -16,7 +16,7 @@ import datetime
import os
import time
-import mock
+from unittest import mock
import pytest
from google.auth import _helpers
diff --git a/tests/transport/test_requests.py b/tests/transport/test_requests.py
index d6770de..7792c32 100644
--- a/tests/transport/test_requests.py
+++ b/tests/transport/test_requests.py
@@ -17,7 +17,7 @@ import functools
import sys
import freezegun
-import mock
+from unittest import mock
import OpenSSL
import pytest
import requests
diff --git a/tests/transport/test_urllib3.py b/tests/transport/test_urllib3.py
index a25fcd7..97a1df3 100644
--- a/tests/transport/test_urllib3.py
+++ b/tests/transport/test_urllib3.py
@@ -14,7 +14,7 @@
import sys
-import mock
+from unittest import mock
import OpenSSL
import pytest
from six.moves import http_client
|