From: fennecdjay Date: Tue, 8 Oct 2019 13:33:00 +0000 (+0200) Subject: :art: Improve tuple test X-Git-Tag: nightly~2198^2~97 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=04b6624e17989397f1877f99dd0b4c8f37190bfa;p=gwion.git :art: Improve tuple test --- diff --git a/tests/tuple/tuple_member_float.gw b/tests/tuple/tuple_member_float.gw index 0205d812..d3fbc990 100644 --- a/tests/tuple/tuple_member_float.gw +++ b/tests/tuple/tuple_member_float.gw @@ -1,4 +1,4 @@ -<(.2, #(1), 3) @=> <~float, complex, int~>Tuple @t; +<(.2, @(1), 3) @=> <~float, Vec3, int~>Tuple @t; t[0]; t[1]; 3 => t[2];