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

Skip to content

Commit cdd5a6b

Browse files
committed
tests: Update tests
1 parent b55e607 commit cdd5a6b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

auth0/v3/test/management/test_organizations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_all_organizations(self, mock_rc):
2626
self.assertEqual('https://domain/api/v2/organizations', args[0])
2727
self.assertEqual(kwargs['params'], {'page': None,
2828
'per_page': None,
29-
'include_totals': True,
29+
'include_totals': 'true',
3030
'from': None,
3131
'take': None})
3232

@@ -194,7 +194,7 @@ def test_all_organization_members(self, mock_rc):
194194
self.assertEqual('https://domain/api/v2/organizations/test-org/members', args[0])
195195
self.assertEqual(kwargs['params'], {'page': None,
196196
'per_page': None,
197-
'include_totals': True,
197+
'include_totals': 'true',
198198
'from': None,
199199
'take': None})
200200

auth0/v3/test/management/test_roles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def test_list_users(self, mock_rc):
126126
'take': 75,
127127
'per_page': None,
128128
'page': None,
129-
'include_totals': True,
129+
'include_totals': 'true',
130130
})
131131

132132

0 commit comments

Comments
 (0)