8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2cd15ac + 9c878a4 commit 178ec1aCopy full SHA for 178ec1a
tests/functional/api/test_groups.py
@@ -36,7 +36,11 @@ def test_groups(gl):
36
37
filtered_groups = gl.groups.list(skip_groups=[group3.id, group4.id])
38
assert group3 not in filtered_groups
39
+ assert group4 not in filtered_groups
40
+
41
+ filtered_groups = gl.groups.list(skip_groups=[group3.id])
42
43
+ assert group4 in filtered_groups
44
45
group1.members.create(
46
{"access_level": gitlab.const.OWNER_ACCESS, "user_id": user.id}
0 commit comments