You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration/test/Test/Spar.hs
+48-6Lines changed: 48 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -455,7 +455,8 @@ testSparScimCreateGetSearchUserGroup = do
455
455
OwnDomain
456
456
tok
457
457
(Just$"displayName co \""<> substr <>"\"")
458
-
(Just (startIndex, count))
458
+
(Just startIndex)
459
+
(Just count)
459
460
createGroup name = createScimUserGroup OwnDomain tok $ mkScimGroup name [mkScimUser scimUserId]
460
461
461
462
-- Create 20 groups
@@ -468,13 +469,54 @@ testSparScimCreateGetSearchUserGroup = do
468
469
count =7
469
470
expectedItemsPerPage =max0 (min count (expectedTotalResults - startIndex +1)) -- expected between 0 and `count` depending on if it's a full, half or empty page
470
471
in searchPage "newGroupNo" startIndex count `bindResponse`\resp ->do
0 commit comments