summaryrefslogtreecommitdiff
path: root/tests/test_zone.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2019-01-08 07:03:46 -0800
committerBob Halley <halley@dnspython.org>2019-01-08 07:03:46 -0800
commitfabbd12061ff428ba7660433345033665b6ebdde (patch)
tree79d5d1d109ac3c786454b5f181273881bd2c49f2 /tests/test_zone.py
parent3c22261405da9c0235112d913362132aef681fb8 (diff)
downloaddnspython-fabbd12061ff428ba7660433345033665b6ebdde.tar.gz
remove the rest of the unicode string prefixes
Diffstat (limited to 'tests/test_zone.py')
-rw-r--r--tests/test_zone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_zone.py b/tests/test_zone.py
index 71b8751..65655ef 100644
--- a/tests/test_zone.py
+++ b/tests/test_zone.py
@@ -236,7 +236,7 @@ class ZoneTestCase(unittest.TestCase):
names.sort()
for n in names:
f.write(z[n].to_text(n))
- f.write(u'\n')
+ f.write('\n')
self.assertEqual(f.getvalue(), example_text_output)
def testTorture1(self): # type: () -> None