From b280a85fd12337f663b060042aab6cf890da00fe Mon Sep 17 00:00:00 2001 From: Lucas Kanashiro Date: Tue, 17 Nov 2015 16:35:29 -0200 Subject: [PATCH] super_archives: Fix flake8 in test --- colab/super_archives/tests/test_utils_blocks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/colab/super_archives/tests/test_utils_blocks.py b/colab/super_archives/tests/test_utils_blocks.py index 56163f5..1d02659 100644 --- a/colab/super_archives/tests/test_utils_blocks.py +++ b/colab/super_archives/tests/test_utils_blocks.py @@ -1,6 +1,6 @@ from django.test import TestCase -from ..utils.blocks import EmailBlock, EmailBlockParser +from ..utils.blocks import EmailBlock class TestEmailBlock(TestCase): @@ -11,13 +11,13 @@ class TestEmailBlock(TestCase): def test_html2text_without_br_tag(self): html = 'Hello, world!' text = self.email_block._html2text(html) - + self.assertEquals(text, 'Hello, world!') def test_html2text_with_br_tag(self): html = 'Hello, world!

Test with br tag

!' text = self.email_block._html2text(html) - + self.assertEquals(text, 'Hello, world!\nTest with br tag!') def test_mark_links(self): -- libgit2 0.21.2