Skip to content

Commit 5433451

Browse files
committed
Remove unicode_literals, it just makes testing unicode harder.
1 parent 7fe3da0 commit 5433451

File tree

5 files changed

+1
-9
lines changed

5 files changed

+1
-9
lines changed

django_coverage_plugin/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""The Django coverage plugin."""
22

3-
from __future__ import print_function, unicode_literals
3+
from __future__ import print_function
44

55
import os.path
66
from six.moves import range

tests/plugin_test.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Base classes and helpers for testing the plugin."""
22

3-
from __future__ import print_function, unicode_literals
4-
53
import os
64
import os.path
75
import re

tests/test_extends.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Tests of template inheritance for django_coverage_plugin."""
22

3-
from __future__ import print_function, unicode_literals
4-
53
from .plugin_test import DjangoPluginTestCase
64

75

tests/test_flow.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Tests of control-flow structures for django_coverage_plugin."""
22

3-
from __future__ import print_function, unicode_literals
4-
53
from .plugin_test import DjangoPluginTestCase, squashed
64

75

tests/test_helpers.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Test helpers for the django coverage plugin."""
22

3-
from __future__ import print_function, unicode_literals
4-
53
import unittest
64

75
from django_coverage_plugin.plugin import make_line_map, get_line_number

0 commit comments

Comments
 (0)