We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c9682 commit 153e53bCopy full SHA for 153e53b
tests/functional/api/test_statistics.py
@@ -24,7 +24,7 @@ def test_get_statistics(gl):
24
)
25
26
statistics = gl.statistics.get()
27
- assert statistics.snippets == "1"
28
- assert statistics.users == "1"
29
- assert statistics.groups == "2"
30
- assert statistics.projects == "1"
+ assert statistics.snippets.isdigit() == True
+ assert statistics.users.isdigit() == True
+ assert statistics.groups.isdigit() == True
+ assert statistics.projects.isdigit() == True
0 commit comments