aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-14 10:35:37 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-14 10:35:37 -0600
commite7fac4f893274098f153683a70a57da9f930428b (patch)
tree22c476a41fd625a26315a76a7535669f78a32133 /tests
parentc9f48f67da5694600c6149621e384924c836c322 (diff)
downloadcryptography-e7fac4f893274098f153683a70a57da9f930428b.tar.gz
cryptography-e7fac4f893274098f153683a70a57da9f930428b.tar.bz2
cryptography-e7fac4f893274098f153683a70a57da9f930428b.zip
python3 compatibility is good
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index 56ce7032..9cb015b7 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -64,7 +64,7 @@ def test_egcd():
int("e525d5ee4fe6d6142812fe12a7b531ebfaa033be349e4c3680d264f41d82008b",
16)
)
- assert val[0] == 1L
+ assert val[0] == 1
assert val[1] == int("6caa1a8fae63ab2b8d4051101828985ef93fb0ffc14a955f93fd"
"9c4a3fd8c7b1", 16)
assert val[2] == int("-5b4ff48d0c09936986bc3c544f1e7dd684f8c0f09ae36a7819e"
'n140' href='#n140'>140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215