From d95aad60fa2adb7868e566a2b95ea2fc9af471bb Mon Sep 17 00:00:00 2001 From: tzangms Date: Mon, 9 Dec 2013 02:39:03 +0800 Subject: [PATCH] clean up --- tests/__init__.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/__init__.py b/tests/__init__.py index 6de0100..aadc141 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -48,10 +48,6 @@ class BootstrapTemplateTagTests(TestCase): with open(os.path.join(TEST_DIR, tpl)) as f: content = f.read() - with open('/tmp/basic.html', 'w+') as f: - f.write(html) - - self.maxDiff = True self.assertHTMLEqual(html, content) def test_horizontal_form(self): @@ -63,5 +59,4 @@ class BootstrapTemplateTagTests(TestCase): with open(os.path.join(TEST_DIR, tpl)) as f: content = f.read() - self.maxDiff = True self.assertHTMLEqual(html, content)