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