Skip to content

Commit c457554

Browse files
committed
fix error
1 parent 2fd68bf commit c457554

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

qiita_pet/handlers/study_handlers/tests/test_listing_handlers.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def setUp(self):
7878
'publication_doi': ['10.100/123456', '10.100/7891011'],
7979
'publication_pid': ['123456', '7891011'],
8080
'pi': ('PI_dude@foo.bar', 'PIDude'),
81+
'study_tags': None,
8182
'proc_data_info': PROC_DATA_INFO
8283
}
8384
self.exp = [self.single_exp]
@@ -124,6 +125,7 @@ def test_build_study_info_empty_study(self):
124125
'study_id': 2,
125126
'ebi_study_accession': None,
126127
'study_title': 'My study',
128+
'study_tags': None,
127129
'number_samples_collected': 0})
128130

129131
self.assertItemsEqual(obs, self.exp)
@@ -280,7 +282,8 @@ def setUp(self):
280282
'Future studies will attempt to analyze the soils and '
281283
'rhizospheres from the same location at different time '
282284
'points in the plant lifecycle.'),
283-
'number_samples_collected': 27}],
285+
'number_samples_collected': 27,
286+
'study_tags': None}],
284287
'sEcho': 1021,
285288
'iTotalDisplayRecords': 1}
286289
self.empty = {'aaData': [],

0 commit comments

Comments
 (0)