summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2020-07-28 17:09:43 -0400
committerGitHub <noreply@github.com>2020-07-28 16:09:43 -0500
commit7fc93ee7844165a3eea96939c677a84a13a44e03 (patch)
tree8a153d50681e1e21317acfb3813ed3baa196a997 /tests
parent84a15eb772d24c805c884f62cabe8fe2becedf74 (diff)
downloadcryptography-7fc93ee7844165a3eea96939c677a84a13a44e03.tar.gz
Remove unused code (#5360)
Diffstat (limited to 'tests')
-rw-r--r--tests/test_cryptography_utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_cryptography_utils.py b/tests/test_cryptography_utils.py
index ddea7602c..0158ef351 100644
--- a/tests/test_cryptography_utils.py
+++ b/tests/test_cryptography_utils.py
@@ -58,8 +58,3 @@ class TestCachedProperty(object):
assert len(accesses) == 1
assert t.t == 14
assert len(accesses) == 1
-
-
-def test_bit_length():
- assert utils.bit_length(1) == 1
- assert utils.bit_length(11) == 4