File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def test_good_refresh(self):
45
45
c .refresh (http )
46
46
self .assertEquals ('this-is-a-token' , c .access_token )
47
47
48
- http .request .assert_called_exactly_once_with (
48
+ http .request .assert_called_once_with (
49
49
'http://metadata.google.internal/0.1/meta-data/service-accounts/'
50
50
'default/acquire'
51
51
'?scope=http%3A%2F%2Fexample.com%2Fa%20http%3A%2F%2Fexample.com%2Fb' )
@@ -92,7 +92,7 @@ def test_get_access_token(self):
92
92
self .assertEqual ('this-is-a-token' , token .access_token )
93
93
self .assertEqual (None , token .expires_in )
94
94
95
- http .request .assert_called_exactly_once_with (
95
+ http .request .assert_called_once_with (
96
96
'http://metadata.google.internal/0.1/meta-data/service-accounts/'
97
97
'default/acquire?scope=dummy_scope' )
98
98
You can’t perform that action at this time.
0 commit comments