diff options
| author | Steven Fackler <[email protected]> | 2014-10-05 13:47:20 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-10-05 13:47:20 -0700 |
| commit | 6231a39a4187ac2728038d35216aed60b9d93075 (patch) | |
| tree | a8c90a4b738ba7ebdb84820a7c6ff08fc4c5d645 /src | |
| parent | Merge pull request #59 from jroesch/better-errors (diff) | |
| download | rust-openssl-6231a39a4187ac2728038d35216aed60b9d93075.tar.xz rust-openssl-6231a39a4187ac2728038d35216aed60b9d93075.zip | |
Ignore error string text
cc #65
Diffstat (limited to 'src')
| -rw-r--r-- | src/ssl/error.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ssl/error.rs b/src/ssl/error.rs index 0c1af90a..56105253 100644 --- a/src/ssl/error.rs +++ b/src/ssl/error.rs @@ -42,6 +42,7 @@ fn get_reason(err: c_ulong) -> String { } #[test] +#[ignore] // FIXME #65 fn test_uknown_error_should_have_correct_messages() { let err = 336032784; let library = get_lib(err); |