Skip to content

Commit

Permalink
fix: converted list to set to not to compare indices!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Mar 13, 2024
1 parent 0cf2b76 commit 43cdc7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ def test_fetch_multiple_repo(self):
)
)
repo_ids = get_github_organization_repos(github_organization_id=org_id)
self.assertEqual(repo_ids, [100, 101, 102])
self.assertEqual(set(repo_ids), set([100, 101, 102]))

0 comments on commit 43cdc7b

Please sign in to comment.