Commit c0a7bf94 by stv

Fix Pylint: W1503(redundant-unittest-assert)

parent 69695a8f
...@@ -27,8 +27,6 @@ class CapaHtmlRenderTest(unittest.TestCase): ...@@ -27,8 +27,6 @@ class CapaHtmlRenderTest(unittest.TestCase):
# Render the HTML # Render the HTML
etree.XML(problem.get_html()) etree.XML(problem.get_html())
# expect that we made it here without blowing up
self.assertTrue(True)
def test_include_html(self): def test_include_html(self):
# Create a test file to include # Create a test file to include
......
...@@ -2195,7 +2195,6 @@ class ChoiceTextResponseTest(ResponseTest): ...@@ -2195,7 +2195,6 @@ class ChoiceTextResponseTest(ResponseTest):
Test that `build_problem` builds valid xml Test that `build_problem` builds valid xml
""" """
self.build_problem() self.build_problem()
self.assertTrue(True)
def test_unchecked_input_not_validated(self): def test_unchecked_input_not_validated(self):
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment