From c6374f1813515f111b31599ff01a53c2234be26e Mon Sep 17 00:00:00 2001 From: Venkat Malladi <venkat.malladi@utsouthwestern.edu> Date: Mon, 24 Dec 2018 11:05:13 -0600 Subject: [PATCH] Remove extra parathesis --- workflow/tests/test_annotate_peaks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/tests/test_annotate_peaks.py b/workflow/tests/test_annotate_peaks.py index e1b3632..01152c8 100644 --- a/workflow/tests/test_annotate_peaks.py +++ b/workflow/tests/test_annotate_peaks.py @@ -23,7 +23,7 @@ def test_annotate_peaks_singleend(): assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC.chipseeker_pie.pdf')) assert os.path.exists(os.path.join(test_output_path, 'ENCSR238SGC.chipseeker_pie.pdf')) annotation_file = test_output_path + 'ENCSR238SGC.chipseeker_annotation.csv' - assert os.path.exists(annotation_file)) + assert os.path.exists(annotation_file) assert utils.count_lines(annotation_file) == 152839 @@ -33,5 +33,5 @@ def test_annotate_peaks_pairedend(): assert os.path.exists(os.path.join(test_output_path, 'ENCSR217LRF.chipseeker_pie.pdf')) assert os.path.exists(os.path.join(test_output_path, 'ENCSR217LRF.chipseeker_pie.pdf')) annotation_file = test_output_path + 'ENCSR217LRF.chipseeker_annotation.csv' - assert os.path.exists(annotation_file)) + assert os.path.exists(annotation_file) assert utils.count_lines(annotation_file) == 25390 -- GitLab