Skip to content

Commit

Permalink
rm commented out pdb
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Nov 17, 2014
1 parent 858a53a commit 0428a32
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -23,15 +23,13 @@ def test_adapter_lookup(self):
self.assertTrue(getAdapter(self.portal, IMarkupSchema))

def test_get_default_type(self):
# import pdb; pdb.set_trace()
self.settings.default_type = 'text/plain'
self.assertEquals(
getAdapter(self.portal, IMarkupSchema).default_type,
'text/plain'
)

def test_set_default_type(self):
# import pdb; pdb.set_trace()
getAdapter(self.portal, IMarkupSchema).default_type = 'text/plain' # noqa
self.assertEquals(
self.settings.default_type,
Expand All @@ -40,14 +38,12 @@ def test_set_default_type(self):

def test_get_allowed_types(self):
self.settings.allowed_types = ('text/plain', 'text/x-web-textile')
# import pdb; pdb.set_trace()
self.assertEquals(
getAdapter(self.portal, IMarkupSchema).allowed_types,
('text/plain', 'text/x-web-textile')
)

def test_set_allowed_types(self):
# import pdb; pdb.set_trace()
getAdapter(self.portal, IMarkupSchema).allowed_types =\
('text/plain', 'text/x-web-textile')
self.assertEquals(
Expand Down

1 comment on commit 0428a32

@mister-roboto
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TESTS FAILED
Mr.roboto url : http://jenkins.plone.org/roboto/get_info?push=614af89ddafe481d83ee8e364fae73ce
plone-5.0-python-2.7 [FAILURE]

Please sign in to comment.