Commit 68b9bd70 authored by Steven Fackler's avatar Steven Fackler
Browse files

Merge pull request #66 from jroesch/fix-failing-test

Fix #65: failing test case
parents de3f1cf5 7e214fe8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ fn init() {
        INIT.doit(|| {
            ffi::SSL_library_init();
            ffi::SSL_load_error_strings();
            ffi::ERR_load_crypto_strings();
            ffi::ERR_load_crypto_strings(); // necessary?
            let verify_idx = ffi::SSL_CTX_get_ex_new_index(0, ptr::null(), None,
                                                           None, None);
            assert!(verify_idx >= 0);