Skip to content

Commit 9c61f5b

Browse files
committed
Fixing test_analysis.py
1 parent 1c756d9 commit 9c61f5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiita_db/test/test_analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def test_retrieve_biom_tables(self):
276276
self.assertEqual(self.analysis.biom_tables, exp)
277277

278278
def test_all_associated_filepaths(self):
279-
exp = {12, 13, 14, 15}
279+
exp = {10, 11, 12, 13}
280280
self.assertEqual(self.analysis.all_associated_filepath_ids, exp)
281281

282282
def test_retrieve_biom_tables_none(self):
@@ -427,7 +427,7 @@ def test_build_mapping_file(self):
427427
obs = self.conn_handler.execute_fetchall(
428428
sql, ("%d_analysis_mapping.txt" % self.analysis.id,))
429429

430-
exp = [[15, '1_analysis_mapping.txt', 9, '852952723', 1, 1],
430+
exp = [[13, '1_analysis_mapping.txt', 9, '852952723', 1, 1],
431431
[new_id, '1_analysis_mapping.txt', 9, '1606265094', 1, 1]]
432432
self.assertEqual(obs, exp)
433433

0 commit comments

Comments
 (0)