diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-08-30 21:09:15 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-08-30 09:09:15 -0400 |
commit | 21353a467353da0f52a93a6a63e5e8e2fb8754b1 (patch) | |
tree | 7426ff4b3426149a58ea23b701e9b2587a20bb3d /tests | |
parent | 2e8725d805ae4df7d44d54432b8c610723d8c7f9 (diff) | |
download | cryptography-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')
-rw-r--r-- | tests/test_x509.py | 2 |
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 |