Skip to content

Commit

Permalink
Fix issue biopython#4334
Browse files Browse the repository at this point in the history
  • Loading branch information
sagitter committed Jul 1, 2023
1 parent 04bdbb0 commit 36b9a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/test_Entrez.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def check_request_ids(testcase, params, expected):
:type params: dict
:param expected: Expected set of IDs, as colleciton of strings.
"""
testcase.assertEquals(len(params["id"]), 1)
testcase.assertEqual(len(params["id"]), 1)
ids_str = params["id"][0]
# Compare up to ordering
testcase.assertCountEqual(ids_str.split(","), expected)
Expand Down

0 comments on commit 36b9a37

Please sign in to comment.