diff --git a/workflow/tests/test_dedupReads.py b/workflow/tests/test_dedupReads.py index a2d7e5ebe402b3e0ff416a073826ab9309cbd845..e204317e7a30bc05206d64535472963f35da0b5f 100644 --- a/workflow/tests/test_dedupReads.py +++ b/workflow/tests/test_dedupReads.py @@ -13,13 +13,13 @@ logs_output_path = os.path.dirname(os.path.abspath(__file__)) + \ @pytest.mark.dedupData def test_dedupData_se(): - assert os.path.exists(os.path.join(data_output_path, '16-1ZX4.deduped.bm')) - assert os.path.exists(os.path.join(data_output_path, '16-1ZX4.deduped.Metrics.txt')) + assert os.path.exists(os.path.join(data_output_path, 'Q-Y5JA_1M.se.deduped.bam')) + assert os.path.exists(os.path.join(data_output_path, 'Q-Y5JA_1M.se.deduped.Metrics.txt')) @pytest.mark.dedupData def test_dedupData_pe(): - assert os.path.exists(os.path.join(data_output_path, 'Q-Y5JA.deduped.bm')) - assert os.path.exists(os.path.join(data_output_path, 'Q-Y5JA.deduped.Metrics.txt')) + assert os.path.exists(os.path.join(data_output_path, 'Q-Y5JA_1M.pe.deduped.bam')) + assert os.path.exists(os.path.join(data_output_path, 'Q-Y5JA_1M.pe.deduped.Metrics.txt')) @pytest.mark.dedupLogs