summaryrefslogtreecommitdiff
path: root/sci-biology/biopython/files/biopython-1.81-python3.12.patch
blob: 8f903a4a39bdbd925253982b1d32c6bb44262b54 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/Tests/test_Entrez.orig.py	2023-02-13 04:07:42.000000000 +0100
+++ b/Tests/test_Entrez.py	2023-06-30 14:42:58.177365639 +0200
@@ -126,7 +126,7 @@
     :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)