Skip to content

Commit 655844b

Browse files
committed
fix testing
1 parent 05a3f90 commit 655844b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/coordinatesystems.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@
123123
xy = SVector(1.0, 2.0)u"m"
124124
= Polar(2.23606797749979u"m", 1.1071487177940904)
125125

126-
@test_broken p_from_c(xy)
127-
@test_broken p_from_c(collect(xy))
126+
@test p_from_c(xy)
127+
@test p_from_c(collect(xy))
128128
@test c_from_p(rθ) xy
129129
end
130130
end
@@ -510,17 +510,17 @@
510510
@testset "Shperical" begin
511511
rθϕ = Spherical(3.7416573867739413u"m", 1.1071487177940904, 0.9302740141154721)
512512

513-
@test_broken s_from_cart(xyz) rθϕ
513+
@test s_from_cart(xyz) rθϕ
514514
@test typeof(s_from_cart(xyz)) == typeof(rθϕ)
515-
@test_broken s_from_cart(collect(xyz)) rθϕ
515+
@test s_from_cart(collect(xyz)) rθϕ
516516
@test cart_from_s(rθϕ) xyz
517517
end
518518
@testset "Cylindrical" begin
519519
rθz = Cylindrical(2.23606797749979u"m", 1.1071487177940904, 3.0u"m")
520520

521-
@test_broken cyl_from_cart(xyz) rθz
521+
@test cyl_from_cart(xyz) rθz
522522
@test typeof(cyl_from_cart(xyz)) == typeof(rθz)
523-
@test_broken cyl_from_cart(collect(xyz)) rθz
523+
@test cyl_from_cart(collect(xyz)) rθz
524524
@test cart_from_cyl(rθz) xyz
525525
end
526526
end

0 commit comments

Comments
 (0)