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.
1 parent debb45a commit 19f25ddCopy full SHA for 19f25dd
integration/tests/posit/connect/test_users.py
@@ -7,7 +7,7 @@ def setup_class(cls):
7
cls.client = client = connect.Client()
8
9
# Play nicely with other tests
10
- cls.existing_users = client.users.count()
+ cls.existing_user_count = client.users.count()
11
12
cls.aron = client.users.create(
13
username="aron",
@@ -34,7 +34,7 @@ def test_lock(self):
34
35
def test_count(self):
36
# aron, bill, cole, and me (and existing user)
37
- assert self.client.users.count() == 3 + self.existing_users
+ assert self.client.users.count() == 3 + self.existing_user_count
38
39
def test_find(self):
40
assert self.client.users.find(prefix="aron") == [self.aron]
0 commit comments