xrange compatibility optimization for Python 2 (#69)
diff --git a/tests/test_compat.py b/tests/test_compat.py
index 74d6f53..2a58df5 100644
--- a/tests/test_compat.py
+++ b/tests/test_compat.py
@@ -18,7 +18,7 @@
 import struct
 import sys
 
-from rsa._compat import is_bytes, byte, b
+from rsa._compat import b, byte, is_bytes, range
 
 
 class TestByte(unittest.TestCase):