diff options
| author | Bob Halley <halley@dnspython.org> | 2019-01-08 07:03:46 -0800 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2019-01-08 07:03:46 -0800 |
| commit | fabbd12061ff428ba7660433345033665b6ebdde (patch) | |
| tree | 79d5d1d109ac3c786454b5f181273881bd2c49f2 /tests/test_zone.py | |
| parent | 3c22261405da9c0235112d913362132aef681fb8 (diff) | |
| download | dnspython-fabbd12061ff428ba7660433345033665b6ebdde.tar.gz | |
remove the rest of the unicode string prefixes
Diffstat (limited to 'tests/test_zone.py')
| -rw-r--r-- | tests/test_zone.py | 2 |
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 |
