Skip to content

Commit 0847e8a

Browse files
committed
Fix: Linting
1 parent 7d2b950 commit 0847e8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def test_preview_renders_html(self):
2222

2323
self.assertEqual(self.snippet.html, "<h1>Test Title</h1><br><p>Test paragraph</p>")
2424
self.assertEqual(response.status_code, 200)
25-
# Removing html escaping, means the content is rendered including the tags on the page, but also means that the
26-
# response will contain character entity references.
25+
# Removing html escaping, means the content is rendered including the tags on the page, but also means that
26+
# the response will contain character entity references.
2727
self.assertContains(response, "&lt;h1&gt;Test Title&lt;/h1&gt;&lt;br&gt;&lt;p&gt;Test paragraph&lt;/p&gt;")
2828

2929
def test_preview_raises_404_no_snippet(self):

0 commit comments

Comments
 (0)