Skip to content

Commit acf8432

Browse files
vaibhavatlanAryamanz29
authored andcommitted
Fixed the integration tests
1 parent b6aafa1 commit acf8432

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/admin_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ def test_user_groups_pagination(client: AtlanClient, group: CreateGroupResponse)
168168
def test_retrieve_existing_user(client: AtlanClient, group: CreateGroupResponse):
169169
global _default_group_count
170170
all_users = client.user.get_all()
171-
assert all_users
172-
assert len(all_users) >= 1 # type: ignore
171+
assert all_users.records
172+
assert len(all_users.records) >= 1 # type: ignore
173173
user1 = client.user.get_by_username(FIXED_USER)
174174
assert user1
175175
assert user1.id

0 commit comments

Comments
 (0)