File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
auth0/v3/test/authentication Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def test_logout(self, mock_get):
15
15
16
16
args , kwargs = mock_get .call_args
17
17
18
- self .assertEqual (args [0 ], 'https://my.domain.com/v2/logout?cid&rto' )
18
+ self .assertEqual (args [0 ], 'https://my.domain.com/v2/logout?client_id= cid&returnTo= rto' )
19
19
self .assertEqual (kwargs ['headers' ], {
20
20
'Content-Type' : 'application/json'
21
21
})
@@ -31,7 +31,7 @@ def test_federated_logout(self, mock_get):
31
31
32
32
args , kwargs = mock_get .call_args
33
33
34
- self .assertEqual (args [0 ], 'https://my.domain.com/v2/logout?federated&cid&rto' )
34
+ self .assertEqual (args [0 ], 'https://my.domain.com/v2/logout?federated&client_id= cid&returnTo= rto' )
35
35
self .assertEqual (kwargs ['headers' ], {
36
36
'Content-Type' : 'application/json'
37
37
})
You can’t perform that action at this time.
0 commit comments