diff options
| author | Tim Graham <timograham@gmail.com> | 2017-02-17 19:45:34 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-09-25 17:11:03 -0400 |
| commit | cfff2af02be40106d4759cc6f8bfa476ce82421c (patch) | |
| tree | 2680ff4040dd83d7b50ca2265e8268e362142476 /tests/test_utils | |
| parent | a80903b7114c984b5087597e8c34750e7bb44f51 (diff) | |
Fixed #27857 -- Dropped support for Python 3.4.
Diffstat (limited to 'tests/test_utils')
| -rw-r--r-- | tests/test_utils/tests.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py index 80ee5a27b5..ff0bda6b8d 100644 --- a/tests/test_utils/tests.py +++ b/tests/test_utils/tests.py @@ -1,5 +1,4 @@ import os -import sys import unittest from io import StringIO from unittest import mock @@ -684,9 +683,6 @@ class HTMLEqualTests(SimpleTestCase): error_msg = ( "First argument is not valid HTML:\n" "('Unexpected end tag `div` (Line 1, Column 6)', (1, 6))" - ) if sys.version_info >= (3, 5) else ( - "First argument is not valid HTML:\n" - "Unexpected end tag `div` (Line 1, Column 6), at line 1, column 7" ) with self.assertRaisesMessage(AssertionError, error_msg): self.assertHTMLEqual('< div></ div>', '<div></div>') |
