From 350bdb2634d816cf8ff9687cc8cfb77ead613abf Mon Sep 17 00:00:00 2001 From: kshyatt Date: Wed, 9 Aug 2017 15:45:08 -0700 Subject: [PATCH] Test last convert method --- test/core.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/core.jl b/test/core.jl index d7663762..e2736bea 100644 --- a/test/core.jl +++ b/test/core.jl @@ -135,4 +135,6 @@ @test Tuple{2, 3, 5} != StaticArrays.Size{(2, 3, 4)} @test StaticArrays.Size{(2, 3, 4)} != Tuple{2, 3, 5} @test StaticArrays.check_length(2) == nothing + + @test convert(Tuple, @SVector [2]) == (2,) end