Skip to content

Commit

Permalink
test/rangesl.jl: Change \approx to == in range(start, stop) test
Browse files Browse the repository at this point in the history
  • Loading branch information
mkitti committed Mar 28, 2021
1 parent ab03daf commit e32fda2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ranges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
@test q === range(; start, stop )
@test q == range(; start, stop, step )
@test q == range(; start, stop, length)
@test q range(; stop, length)
@test q == range(; stop, length)
end
end
@testset "range(start, stop, length)" begin
Expand Down

0 comments on commit e32fda2

Please sign in to comment.