Skip to content

Commit 19f25dd

Browse files
committed
user clearer name
1 parent debb45a commit 19f25dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/tests/posit/connect/test_users.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def setup_class(cls):
77
cls.client = client = connect.Client()
88

99
# Play nicely with other tests
10-
cls.existing_users = client.users.count()
10+
cls.existing_user_count = client.users.count()
1111

1212
cls.aron = client.users.create(
1313
username="aron",
@@ -34,7 +34,7 @@ def test_lock(self):
3434

3535
def test_count(self):
3636
# aron, bill, cole, and me (and existing user)
37-
assert self.client.users.count() == 3 + self.existing_users
37+
assert self.client.users.count() == 3 + self.existing_user_count
3838

3939
def test_find(self):
4040
assert self.client.users.find(prefix="aron") == [self.aron]

0 commit comments

Comments
 (0)