Skip to content

Commit

Permalink
Revert some @test for #198 to @test_broken
Browse files Browse the repository at this point in the history
  • Loading branch information
wsshin committed Aug 8, 2017
1 parent e45d995 commit 815860a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/broadcast.jl
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ end
@test eltype(a / 2) == Real
end
let a = SVector{3, Real}(2, 2.0, 4//2)
@test eltype(a + 2.0) == Real
@test eltype(a - 2.0) == Real
@test eltype(a * 2.0) == Real
@test eltype(a / 2.0) == Real
@test_broken eltype(a + 2.0) == Float64
@test_broken eltype(a - 2.0) == Float64
@test_broken eltype(a * 2.0) == Float64
@test_broken eltype(a / 2.0) == Float64
end
let a = broadcast(Float32, SVector(3, 4, 5))
@test eltype(a) == Float32
Expand Down

0 comments on commit 815860a

Please sign in to comment.