From e6955b5c99494bd1ecacbb2512dcdf18a11090ef Mon Sep 17 00:00:00 2001
From: Venkat Malladi <venkat.malladi@utsouthwestern.edu>
Date: Sat, 19 Jan 2019 00:10:11 -0600
Subject: [PATCH] Fix the missing parathesis.

---
 workflow/tests/test_map_qc.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/workflow/tests/test_map_qc.py b/workflow/tests/test_map_qc.py
index cd734f8..7bff060 100644
--- a/workflow/tests/test_map_qc.py
+++ b/workflow/tests/test_map_qc.py
@@ -52,5 +52,5 @@ def test_library_complexity_pairedend():
     library_complexity = test_output_path + 'ENCLB568IYX.pbc.qc'
     df_library_complexity = pd.read_csv(library_complexity, sep='\t')
     assert  df_library_complexity["NRF"].iloc[0] == 0.947064
-    assert  round(df_library_complexity["PBC1"].iloc[0],6 == 0.946723
+    assert  round(df_library_complexity["PBC1"].iloc[0],6) == 0.946723
     assert  df_library_complexity["PBC2"].iloc[0] == 18.643039
-- 
GitLab