Drop byte_literal in favour of b''
diff --git a/tests/test_compat.py b/tests/test_compat.py
index 2a58df5..0013155 100644
--- a/tests/test_compat.py
+++ b/tests/test_compat.py
@@ -18,7 +18,7 @@
import struct
import sys
-from rsa._compat import b, byte, is_bytes, range
+from rsa._compat import byte, is_bytes, range
class TestByte(unittest.TestCase):
@@ -33,4 +33,4 @@
self.assertRaises(struct.error, byte, -1)
def test_byte_literal(self):
- self.assertIsInstance(b('abc'), bytes)
+ self.assertIsInstance(b'abc', bytes)