diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-04 19:36:39 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-04 19:36:39 -0600 |
commit | 02ed961c963f0d27fe23e9608223ccc8dd3be7f6 (patch) | |
tree | 5ea00f7326f3fd05a73eb84cfc1001bab000e1fc | |
parent | fefe3c224353e4e37b02f1df0fc9558f68f8c464 (diff) | |
download | cryptography-02ed961c963f0d27fe23e9608223ccc8dd3be7f6.tar.gz cryptography-02ed961c963f0d27fe23e9608223ccc8dd3be7f6.tar.bz2 cryptography-02ed961c963f0d27fe23e9608223ccc8dd3be7f6.zip |
missing #
-rw-r--r-- | tests/hazmat/bindings/test_bindings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/bindings/test_bindings.py b/tests/hazmat/bindings/test_bindings.py index 5b13d543..7af1d581 100644 --- a/tests/hazmat/bindings/test_bindings.py +++ b/tests/hazmat/bindings/test_bindings.py @@ -21,7 +21,7 @@ from cryptography.hazmat.bindings.openssl.binding import Binding def dummy_initializer(): ffi = cffi.FFI() - ffi.verify(source="include <fake_header.h>") + ffi.verify(source="#include <fake_header.h>") def test_binding_available(): |