diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-11 06:28:46 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-02-11 06:28:46 -0500 |
commit | cbf8be9e8a46bcd2bea16de427e9075458009c8a (patch) | |
tree | cf7842fd8f1e75e2b6566cde8768b2829170a7f5 /tests/test_parser.py | |
parent | bb951099405a3254429b575311fa4802c5213cb2 (diff) | |
download | python-coveragepy-cbf8be9e8a46bcd2bea16de427e9075458009c8a.tar.gz |
Fix a type error in a new test
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r-- | tests/test_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index 48b70ef..fd820b9 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -192,7 +192,7 @@ class ParserMissingArcDescriptionTest(CoverageTest): run_in_temp_dir = False def test_missing_arc_description(self): - text = textwrap.dedent("""\ + text = textwrap.dedent(u"""\ if x: print(2) print(3) |