We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a421171 commit 4a4626cCopy full SHA for 4a4626c
1 file changed
test/dcm/misc.jl
@@ -30,4 +30,7 @@ end
30
31
D = DCM(1.0f0, 2.0f0, 3.0f0, 4.0f0, 5.0f0, 6.0f0, 7.0f0, 8.0f0, 9.0f0)
32
@test Tuple(D) === (1.0f0, 2.0f0, 3.0f0, 4.0f0, 5.0f0, 6.0f0, 7.0f0, 8.0f0, 9.0f0)
33
+
34
+ D = DCM{Float64}(1, 2, 3.0, 4.0f0, 5, 0x06, 0o07, 0x08, 9)
35
+ @test Tuple(D) === (1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0)
36
end
0 commit comments