Skip to content

Commit 6b66193

Browse files
authored
[Test] Fix test with stdlib_version (#276)
1 parent c49f9a5 commit 6b66193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/compat.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ using UUIDs: UUID
3232
@test stdlib_version(gmp_jll, v"1.7") == v"6.2.1+1"
3333
# Pkg in Julia v1.8.1 believes that GMP_jll was retroactively
3434
# downgraded: https://github.com/JuliaLang/Pkg.jl/issues/3203
35-
if VERSION == v"1.8.1"
35+
if v"1.8.1" <= VERSION < v"1.9.0-DEV"
3636
@test stdlib_version(gmp_jll, v"1.8") == v"6.2.1+1"
3737
else
3838
@test stdlib_version(gmp_jll, v"1.8") == v"6.2.1+2"

0 commit comments

Comments
 (0)