Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
fxcoudert committed Mar 29, 2024
1 parent 5d4c9eb commit 06fdbd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stdlib/OpenSSL_jll/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
using Test, Libdl, OpenSSL_jll

@testset "OpenSSL_jll" begin
major = ccall((:OPENSSL_version_major, libcrypto), CUInt, (CVoid,))
minor = ccall((:OPENSSL_version_minor, libcrypto), CUInt, (CVoid,))
patch = ccall((:OPENSSL_version_patch, libcrypto), CUInt, (CVoid,))
major = ccall((:OPENSSL_version_major, libcrypto), Cuint, ())
minor = ccall((:OPENSSL_version_minor, libcrypto), Cuint, ())
patch = ccall((:OPENSSL_version_patch, libcrypto), Cuint, ())
@test VersionNumber(major, minor, patch) == v"3.0.13"
end

0 comments on commit 06fdbd7

Please sign in to comment.