diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-30 13:28:28 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-30 13:28:28 -0500 |
commit | a409ae1dcbfef839eee80182f5c1de964a517b58 (patch) | |
tree | 3adcba079e5c2994977fcc3690499ebb1e650572 /tests | |
parent | 14951f4252814c0cfcde5db05b4af12e93f570a9 (diff) | |
download | cryptography-a409ae1dcbfef839eee80182f5c1de964a517b58.tar.gz cryptography-a409ae1dcbfef839eee80182f5c1de964a517b58.tar.bz2 cryptography-a409ae1dcbfef839eee80182f5c1de964a517b58.zip |
we should use der rather than ber
Doesn't make a difference in this specific case but it is correct.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index c80e97b7..5c0e2343 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -18,7 +18,7 @@ import collections import re from contextlib import contextmanager -from pyasn1.codec.ber import encoder +from pyasn1.codec.der import encoder from pyasn1.type import namedtype, univ import pytest |