aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorBonfaceKilz2021-06-03 21:45:25 +0300
committerzsloan2021-06-18 22:08:04 +0000
commit8210c46fde908b8815ab97f2f91039f87365369b (patch)
tree4c3719b55077e5b8e94d179cb8622a8b8e949277 /tests/unit
parentd769bfcc38a14720fa888e2b7c0ff874cc91f6a2 (diff)
downloadgenenetwork3-8210c46fde908b8815ab97f2f91039f87365369b.tar.gz
Use prepared statements for FETCH sql function
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/db/test_phenotypes.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/db/test_phenotypes.py b/tests/unit/db/test_phenotypes.py
index 21eb757..824d186 100644
--- a/tests/unit/db/test_phenotypes.py
+++ b/tests/unit/db/test_phenotypes.py
@@ -61,7 +61,8 @@ class TestPhenotypes(TestCase):
self.assertEqual(phenotype.pre_pub_description,
"Test pre-publication")
cursor.execute.assert_called_once_with(
- "SELECT * FROM Phenotype WHERE id = '35' AND Owner = 'Rob'")
+ "SELECT * FROM Phenotype WHERE id = %s AND Owner = %s",
+ (35, 'Rob'))
def test_diff_from_dict(self):
"""Test that a correct diff is generated"""