We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc5c2dd commit eceea75Copy full SHA for eceea75
test/intfuncs.jl
@@ -87,7 +87,7 @@
87
@test leading_ones(uint32(int64(2) ^ 32 - 2)) == 31
88
@test leading_ones(1) == 0
89
@test leading_zeros(int32(1)) == 31
90
-@test leading_zeros(uint32(2 ^ 32 - 2)) == 0
+@test leading_zeros(uint32(int64(2) ^ 32 - 2)) == 0
91
92
@test isqrt(4) == 2
93
@test isqrt(5) == 2
test/path.jl
@@ -2,4 +2,4 @@
2
3
@unix_only @test isabspath("/") == true
4
@test isabspath("~") == false
5
-@test isabspath(expanduser("~")) == true
+@unix_only @test isabspath(expanduser("~")) == true
0 commit comments