We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84969ff commit b437b70Copy full SHA for b437b70
tests/functional/api/test_statistics.py
@@ -31,6 +31,8 @@ def test_get_statistics(gl):
31
32
statistics = gl.statistics.get()
33
assert statistics.snippets == "1"
34
- assert statistics.users == str(1 + len(gl.users.list(search="ghost")))
+ assert statistics.users == str(
35
+ 1 + len(gl.users.list(search="ghost")) + 1
36
+ ) # created users + leftover ghost user + root user
37
assert statistics.groups == "2"
38
assert statistics.projects == "1"
0 commit comments