aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_x509.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-08-30 21:09:15 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2016-08-30 09:09:15 -0400
commit21353a467353da0f52a93a6a63e5e8e2fb8754b1 (patch)
tree7426ff4b3426149a58ea23b701e9b2587a20bb3d /tests/test_x509.py
parent2e8725d805ae4df7d44d54432b8c610723d8c7f9 (diff)
downloadcryptography-21353a467353da0f52a93a6a63e5e8e2fb8754b1.tar.gz
cryptography-21353a467353da0f52a93a6a63e5e8e2fb8754b1.tar.bz2
cryptography-21353a467353da0f52a93a6a63e5e8e2fb8754b1.zip
fix an overindented line. not sure why our linters didn't catch this (#3123)
Diffstat (limited to 'tests/test_x509.py')
-rw-r--r--tests/test_x509.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py
index 47b81cb5..e281579b 100644
--- a/tests/test_x509.py
+++ b/tests/test_x509.py
@@ -3682,7 +3682,7 @@ class TestName(object):
def test_iter_input(self):
attrs = [
- x509.NameAttribute(x509.ObjectIdentifier('2.999.1'), u'value1')
+ x509.NameAttribute(x509.ObjectIdentifier('2.999.1'), u'value1')
]
name = x509.Name(iter(attrs))
assert list(name) == attrs