From 98557403d5541e849844bf3a9113f5f1477a6f52 Mon Sep 17 00:00:00 2001 From: MrTango Date: Tue, 2 Jul 2019 17:52:31 +0300 Subject: [PATCH] fix test --- plone/app/blocks/tests/test_tiles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plone/app/blocks/tests/test_tiles.py b/plone/app/blocks/tests/test_tiles.py index 84a702f7..3a8d7711 100644 --- a/plone/app/blocks/tests/test_tiles.py +++ b/plone/app/blocks/tests/test_tiles.py @@ -226,7 +226,7 @@ def testRenderTiles(self): self.assertIn('This is a demo tile with id tile2', result) self.assertIn('This is a demo tile with id tile3', result) self.assertIn('This is a demo tile with id tile4', result) - self.assertIn('Umlauts: Übertile', result) + self.assertIn(u'Umlauts: Übertile', result) def testRenderTilesError(self): serializer = getHTMLSerializer([testLayout2])