Skip to content

Commit a7a0ae9

Browse files
authored
tests: oauth: use settings backend
1 parent 9fd1801 commit a7a0ae9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydrive2/test/test_oauth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def test_10_ServiceAuthFromSavedCredentialsDictionary():
157157
def test_11_ServiceAuthFromJsonNoCredentialsSaving():
158158
client_json = os.environ[GDRIVE_USER_CREDENTIALS_DATA]
159159
settings = {
160-
"client_config_backend": "service",
160+
"client_config_backend": "settings",
161161
"service_config": {
162162
"client_json": client_json,
163163
},
@@ -174,7 +174,7 @@ def test_11_ServiceAuthFromJsonNoCredentialsSaving():
174174
def test_12_ServiceAuthFromJsonDictNoCredentialsSaving():
175175
client_json_dict = json.loads(os.environ[GDRIVE_USER_CREDENTIALS_DATA])
176176
settings = {
177-
"client_config_backend": "service",
177+
"client_config_backend": "settings",
178178
"service_config": {
179179
"client_json_dict": client_json_dict,
180180
},

0 commit comments

Comments
 (0)