Unverified Commit 9d91e732 authored by Alex Gaynor's avatar Alex Gaynor Committed by GitHub
Browse files

Merge pull request #1864 from alex/fix-and-check

Fix syntax error I accidentally pushed to master
parents 42474506 f949d409
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1166,7 +1166,7 @@ mod test {
        assert_eq!(nid.long_name().unwrap(), "foobar");

        // Due to a bug in OpenSSL 3.1.0, this test crashes on Windows
        if !cfg(ossl310) {
        if !cfg!(ossl310) {
            let invalid_oid = Nid::create("invalid_oid", "invalid", "invalid");
            assert!(
                invalid_oid.is_err(),