Take out useless logging.

This commit is contained in:
Diana Huang
2013-01-18 15:38:59 -05:00
parent 0e3aeb4041
commit 89055da8ba

View File

@@ -5,10 +5,8 @@ import unittest
from xmodule.self_assessment_module import SelfAssessmentModule
from xmodule.modulestore import Location
from lxml import etree
import logging
from . import test_system
log = logging.getLogger("mitx.courseware")
class SelfAssessmentTest(unittest.TestCase):
@@ -53,9 +51,6 @@ class SelfAssessmentTest(unittest.TestCase):
self.assertEqual(module.get_score()['score'], 0)
html = module.get_html(test_system)
log.debug("rendered html: {0}".format(html))
module.save_answer({'student_answer': "I am an answer"}, test_system)
self.assertEqual(module.state, module.ASSESSING)