diff options
| author | Steven Fackler <[email protected]> | 2014-10-07 23:06:35 -0400 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-10-07 23:06:35 -0400 |
| commit | 68b9bd700eac43fa24d321cef185553fcb7b178c (patch) | |
| tree | 95b6bb4ed72c2de202db64db7805d7f063118886 /src/ssl/error.rs | |
| parent | Merge pull request #67 from vhbit/membio-eof (diff) | |
| parent | Fix #65: failing test case (diff) | |
| download | rust-openssl-68b9bd700eac43fa24d321cef185553fcb7b178c.tar.xz rust-openssl-68b9bd700eac43fa24d321cef185553fcb7b178c.zip | |
Merge pull request #66 from jroesch/fix-failing-test
Fix #65: failing test case
Diffstat (limited to 'src/ssl/error.rs')
| -rw-r--r-- | src/ssl/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssl/error.rs b/src/ssl/error.rs index 56105253..56df2747 100644 --- a/src/ssl/error.rs +++ b/src/ssl/error.rs @@ -42,8 +42,8 @@ fn get_reason(err: c_ulong) -> String { } #[test] -#[ignore] // FIXME #65 fn test_uknown_error_should_have_correct_messages() { + unsafe { ffi::SSL_load_error_strings(); } let err = 336032784; let library = get_lib(err); let function = get_func(err); |