Skip to content

Commit 1f1e826

Browse files
committed
fix #1961
1 parent 9eb9dbb commit 1f1e826

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

qiita_db/support_files/patches/49.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
-- Jan 27, 2017
2+
-- sequeneces -> sequences
3+
4+
UPDATE qiita.artifact_type SET description = 'Demultiplexed and QC sequences'
5+
WHERE artifact_type = 'Demultiplexed'
6+
AND description = 'Demultiplexed and QC sequeneces';

qiita_db/test/test_artifact.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_iter_public(self):
4646
def test_create_type(self):
4747
obs = qdb.artifact.Artifact.types()
4848
exp = [['BIOM', 'BIOM table'],
49-
['Demultiplexed', 'Demultiplexed and QC sequeneces'],
49+
['Demultiplexed', 'Demultiplexed and QC sequences'],
5050
['FASTA', None], ['FASTA_Sanger', None], ['FASTQ', None],
5151
['SFF', None], ['per_sample_FASTQ', None]]
5252
self.assertItemsEqual(obs, exp)
@@ -57,7 +57,7 @@ def test_create_type(self):
5757

5858
obs = qdb.artifact.Artifact.types()
5959
exp = [['BIOM', 'BIOM table'],
60-
['Demultiplexed', 'Demultiplexed and QC sequeneces'],
60+
['Demultiplexed', 'Demultiplexed and QC sequences'],
6161
['FASTA', None], ['FASTA_Sanger', None], ['FASTQ', None],
6262
['SFF', None], ['per_sample_FASTQ', None],
6363
['NewType', 'NewTypeDesc']]

qiita_pet/handlers/api_proxy/tests/test_artifact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def test_artifact_types_get_req(self):
102102
exp = {'message': '',
103103
'status': 'success',
104104
'types': [['BIOM', 'BIOM table'],
105-
['Demultiplexed', 'Demultiplexed and QC sequeneces'],
105+
['Demultiplexed', 'Demultiplexed and QC sequences'],
106106
['FASTA', None],
107107
['FASTA_Sanger', None],
108108
['FASTQ', None],

0 commit comments

Comments
 (0)