Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ecaf8c9

Browse files
committed
Fix py2 tests
1 parent 16febb7 commit ecaf8c9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

auth0/v3/test/management/test_auth0.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def test_users(self):
126126

127127
@mock.patch("auth0.v3.management.users.Users.__init__")
128128
def test_args(self, users):
129+
users.return_value = None
129130
rest_options = RestClientOptions(retries=99)
130131
Auth0(self.domain, self.token, rest_options=rest_options)
131132
users.assert_called_with(

0 commit comments

Comments
 (0)