Skip to content

Commit ccb62a5

Browse files
fix warn => @warn,
change tests
1 parent 659cb4d commit ccb62a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deps/build.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ if Sys.isapple()
22
const libfasttransforms = joinpath(dirname(@__DIR__), "deps", "libfasttransforms.dylib")
33
download("https://github.com/MikaelSlevinsky/FastTransforms/releases/download/v0.2.3/libfasttransforms.dylib", libfasttransforms)
44
else
5-
warn("Didn't build properly")
5+
@warn "Didn't build properly"
66
end

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include("chebyshevtests.jl")
66

77
include("quadraturetests.jl")
88

9-
if find_library(FastTransforms.libfasttransforms) FastTransforms.libfasttransforms
9+
if Sys.isapple()
1010
include("libfasttransformstests.jl")
1111
else
1212
error("FastTransforms is not properly installed. Please run Pkg.build(\"FastTransforms\") ",

0 commit comments

Comments
 (0)