Skip to content

Commit

Permalink
comapt
Browse files Browse the repository at this point in the history
  • Loading branch information
iblislin committed Mar 17, 2021
1 parent 77468fc commit 996b3ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/split.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ using TimeSeries
end

@testset "findall(f::Function, ta)" begin
@test findall(cl .> 100) == findall(>(100), cl)
@test findall(cl .> 100) == findall(x -> x > 100, cl)
@test findall(cl .> 100) == findall(x -> x[4] > 100, ohlc)
end
end
Expand Down

0 comments on commit 996b3ea

Please sign in to comment.