removed test code

This commit is contained in:
Andreas Preikschat 2014-03-31 17:20:17 +02:00
parent d77c6fe7c0
commit b391072e9f
2 changed files with 1 additions and 2 deletions

View File

@ -92,7 +92,7 @@ class TestRenderer(TestCase):
"""
Test the _get_start_tags() method
"""
# GIVEN: A new renderer instance.
# GIVEN: A new renderer instance. Broken raw_text (missing closing tags).
renderer = Renderer()
given_raw_text = '{st}{r}Text text text'
expected_tuple = ('{st}{r}Text text text{/r}{/st}', '{st}{r}',

View File

@ -62,7 +62,6 @@ class TestStartFileRenameForm(TestCase, TestMixin):
"""
Test the windowTitle of the FileRenameDialog
"""
assert False, "reason"
# GIVEN: A mocked QDialog.exec_() method
with patch('PyQt4.QtGui.QDialog.exec_') as mocked_exec: