Skip to content

Commit

Permalink
Merge pull request #477 from atlanhq/DVX-216
Browse files Browse the repository at this point in the history
Make test more concise to avoid potential parallelism impacts
  • Loading branch information
cmgrote authored Jan 30, 2024
2 parents f39284f + ad561b8 commit 5f29b77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ void retrieveUsers1() throws AtlanException {
users = AtlanUser.getByEmail(email);
assertNotNull(users);
assertEquals(users.size(), 1);
assertEquals(user1, users.get(0));
assertEquals(user1.getId(), users.get(0).getId());
}

@Test(
Expand Down

0 comments on commit 5f29b77

Please sign in to comment.