Skip to content

Commit

Permalink
tests: oauth: use settings backend
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed Jul 18, 2022
1 parent 9fd1801 commit a7a0ae9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pydrive2/test/test_oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def test_10_ServiceAuthFromSavedCredentialsDictionary():
def test_11_ServiceAuthFromJsonNoCredentialsSaving():
client_json = os.environ[GDRIVE_USER_CREDENTIALS_DATA]
settings = {
"client_config_backend": "service",
"client_config_backend": "settings",
"service_config": {
"client_json": client_json,
},
Expand All @@ -174,7 +174,7 @@ def test_11_ServiceAuthFromJsonNoCredentialsSaving():
def test_12_ServiceAuthFromJsonDictNoCredentialsSaving():
client_json_dict = json.loads(os.environ[GDRIVE_USER_CREDENTIALS_DATA])
settings = {
"client_config_backend": "service",
"client_config_backend": "settings",
"service_config": {
"client_json_dict": client_json_dict,
},
Expand Down

0 comments on commit a7a0ae9

Please sign in to comment.