diff options
author | Muriithi Frederick Muriuki | 2021-07-30 10:30:55 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2021-07-30 10:30:55 +0300 |
commit | beec957107298eef2b2a825ba0a744e4e95b0dcd (patch) | |
tree | ac4c9547cf69b8cd98603eab0ac4c4968dc8881e | |
parent | 3e5ce62f9c46ff63d3ba3d83140ed698a934a7c3 (diff) | |
download | genenetwork3-beec957107298eef2b2a825ba0a744e4e95b0dcd.tar.gz |
Remove extra space
Issue:
https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/clustering.gmi
* Remove extra space that was causing test to fail.
-rw-r--r-- | tests/unit/db/test_traits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/db/test_traits.py b/tests/unit/db/test_traits.py index 393983d..2a52ea6 100644 --- a/tests/unit/db/test_traits.py +++ b/tests/unit/db/test_traits.py @@ -68,7 +68,7 @@ class TestTraitsDBFunctions(TestCase): " FROM" " PublishXRef, Publication, Phenotype, PublishFreeze" " WHERE" - " PublishXRef.Id = %(trait_name)s " + " PublishXRef.Id = %(trait_name)s" " AND Phenotype.Id = PublishXRef.PhenotypeId" " AND Publication.Id = PublishXRef.PublicationId" " AND PublishXRef.InbredSetId = PublishFreeze.InbredSetId" |