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 | 1f4a1a92d1c6f7d72d17b2572c4c943abecd2f72 (patch) | |
tree | 4a98ab41c2cf361ea6a05e13d6e90342155b246c /tests/test_parser.py | |
parent | fde70b44fea68f48cbf372ce62d79f3679374518 (diff) | |
download | python-coveragepy-git-1f4a1a92d1c6f7d72d17b2572c4c943abecd2f72.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 48b70ef3..fd820b9b 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) |