Commit e4e7a4e3 by Alexander Kryklia

Remove ipdb.

parent 417ddcaa
...@@ -73,7 +73,6 @@ class LTIModule(LTIFields, XModule): ...@@ -73,7 +73,6 @@ class LTIModule(LTIFields, XModule):
body=body, body=body,
headers=headers) headers=headers)
params = headers['Authorization'] params = headers['Authorization']
# import ipdb; ipdb.set_trace()
# parse headers to pass to template as part of context: # parse headers to pass to template as part of context:
params = dict([param.strip().replace('"', '').split('=') for param in params.split('",')]) params = dict([param.strip().replace('"', '').split('=') for param in params.split('",')])
......
...@@ -47,7 +47,6 @@ class TestLTI(BaseTestXmodule): ...@@ -47,7 +47,6 @@ class TestLTI(BaseTestXmodule):
'lti_url': '', # default value 'lti_url': '', # default value
} }
self.correct_headers.update(expected_context) self.correct_headers.update(expected_context)
# import ipdb; ipdb.set_trace()
self.assertEqual( self.assertEqual(
fragment.content, fragment.content,
self.runtime.render_template('lti.html', self.correct_headers) self.runtime.render_template('lti.html', self.correct_headers)
......
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