From 2d9fa9af948a472f4f650136213b46d525c7a06e Mon Sep 17 00:00:00 2001 From: Olivier Mangin Date: Fri, 15 Jan 2016 18:55:13 -0500 Subject: [PATCH] Comments out failing test from #25. --- tests/test_usecase.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/test_usecase.py b/tests/test_usecase.py index 672149c..191fed2 100644 --- a/tests/test_usecase.py +++ b/tests/test_usecase.py @@ -216,13 +216,13 @@ class TestAdd(DataCommandTestCase): with self.assertRaises(SystemExit): self.execute_cmds(cmds) - @unittest.skip - def test_leading_citekey_space(self): - cmds = ['pubs init', - 'pubs add /data/leadingspace.bib', - 'pubs rename LeadingSpace NoLeadingSpace', - ] - self.execute_cmds(cmds) +# To be fixed +# def test_leading_citekey_space(self): +# cmds = ['pubs init', +# 'pubs add /data/leadingspace.bib', +# 'pubs rename LeadingSpace NoLeadingSpace', +# ] +# self.execute_cmds(cmds) class TestList(DataCommandTestCase):