aboutsummaryrefslogtreecommitdiff
path: root/tests/unit
diff options
context:
space:
mode:
authorBonfaceKilz2021-06-03 21:38:58 +0300
committerBonfaceKilz2021-06-03 21:58:31 +0300
commitd0042a3cd95d164468a69ab17ee0c3adba5ea296 (patch)
tree1e83ff75290488937a7c670c897c0b194bbfaa34 /tests/unit
parent6d366086c0361c3f89d066cec78c5a69de9be155 (diff)
downloadgenenetwork3-d0042a3cd95d164468a69ab17ee0c3adba5ea296.tar.gz
Use prepared statements for UPDATE sql function
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/db/test_phenotypes.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/unit/db/test_phenotypes.py b/tests/unit/db/test_phenotypes.py
index fdeca5e..21eb757 100644
--- a/tests/unit/db/test_phenotypes.py
+++ b/tests/unit/db/test_phenotypes.py
@@ -37,12 +37,10 @@ class TestPhenotypes(TestCase):
where=Phenotype(id_=1, owner="Rob")), 1)
cursor.execute.assert_called_once_with(
"UPDATE Phenotype SET "
- "Pre_publication_description = "
- "'Test Pre Pub', "
- "Post_publication_description = "
- "'Test Post Pub', Submitter = 'Rob' "
- "WHERE id = '1' AND Owner = 'Rob'"
- )
+ "Pre_publication_description = %s, "
+ "Post_publication_description = %s, "
+ "Submitter = %s WHERE id = %s AND Owner = %s",
+ ('Test Pre Pub', 'Test Post Pub', 'Rob', 1, 'Rob'))
def test_fetch_phenotype(self):
"""Test that a single phenotype is fetched properly