summaryrefslogtreecommitdiff
path: root/tests/test_tokenizer.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_tokenizer.py
parent3c22261405da9c0235112d913362132aef681fb8 (diff)
downloaddnspython-fabbd12061ff428ba7660433345033665b6ebdde.tar.gz
remove the rest of the unicode string prefixes
Diffstat (limited to 'tests/test_tokenizer.py')
-rw-r--r--tests/test_tokenizer.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_tokenizer.py b/tests/test_tokenizer.py
index 8a6636c..fc7e0e2 100644
--- a/tests/test_tokenizer.py
+++ b/tests/test_tokenizer.py
@@ -29,11 +29,6 @@ class TokenizerTestCase(unittest.TestCase):
token = tok.get()
self.failUnless(token == Token(dns.tokenizer.IDENTIFIER, 'foo'))
- def testUnicode(self):
- tok = dns.tokenizer.Tokenizer(u'foo')
- token = tok.get()
- self.failUnless(token == Token(dns.tokenizer.IDENTIFIER, 'foo'))
-
def testQuotedString1(self):
tok = dns.tokenizer.Tokenizer(r'"foo"')
token = tok.get()