fix test
This commit is contained in:
parent
3e2446c6b0
commit
9e7448a049
@ -12,6 +12,7 @@ from zope.component import getMultiAdapter
|
|||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
import logging
|
import logging
|
||||||
|
import six
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
@ -172,10 +173,14 @@ class CommentTest(unittest.TestCase):
|
|||||||
comment1 = createObject('plone.Comment')
|
comment1 = createObject('plone.Comment')
|
||||||
comment1.text = u'Umlaute sind ä, ö und ü.'
|
comment1.text = u'Umlaute sind ä, ö und ü.'
|
||||||
out = b'<p>Umlaute sind \xc3\xa4, \xc3\xb6 und \xc3\xbc.</p>'
|
out = b'<p>Umlaute sind \xc3\xa4, \xc3\xb6 und \xc3\xbc.</p>'
|
||||||
self.assertEqual(
|
if six.PY2:
|
||||||
comment1.getText(),
|
self.assertEqual(
|
||||||
out.decode('utf8')
|
comment1.getText(),
|
||||||
)
|
out)
|
||||||
|
else:
|
||||||
|
self.assertEqual(
|
||||||
|
comment1.getText(),
|
||||||
|
out.decode('utf8'))
|
||||||
|
|
||||||
def test_getText_doesnt_link(self):
|
def test_getText_doesnt_link(self):
|
||||||
comment1 = createObject('plone.Comment')
|
comment1 = createObject('plone.Comment')
|
||||||
|
Loading…
Reference in New Issue
Block a user