Commit 65b3d03a authored by Steven Fackler's avatar Steven Fackler
Browse files

Work around openssl bug

parent 2ab15f09
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -27,7 +27,8 @@ fn basic() {
    assert_eq!(error.line(), 20);
    cfg_if! {
        if #[cfg(ossl300)] {
            assert_eq!(error.data(), Some(""));
            // https://github.com/openssl/openssl/issues/12530
            assert!(error.data() == None || error.data() == Some(""));
        } else {
            assert_eq!(error.data(), None);
        }