]> jfr.im git - z_archive/twitter.git/commitdiff
fix test syntax error for py3.2, note that having unicode_litterals loaded this is...
authorRouxRC <redacted>
Wed, 24 Dec 2014 06:45:49 +0000 (07:45 +0100)
committerRouxRC <redacted>
Wed, 24 Dec 2014 06:45:49 +0000 (07:45 +0100)
tests/test_internals.py

index 1942d00c7c7ea58bffca04e0cb1e9583f6c32110..a6a243a76a90aa1955f349382dd695fe8a3c744e 100644 (file)
@@ -26,5 +26,5 @@ def test_actually_bytes():
     out_type = str
     if PY_3_OR_HIGHER:
         out_type = bytes
-    for inp in [b"asdf", "asdf", u"asdfüü", 1234]:
+    for inp in [b"asdf", "asdf", "asdfüü", 1234]:
         assert type(actually_bytes(inp)) == out_type