diff options
Diffstat (limited to 'tests/objects/t12753.nim')
-rw-r--r-- | tests/objects/t12753.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/objects/t12753.nim b/tests/objects/t12753.nim index 1009433be..dc55243d2 100644 --- a/tests/objects/t12753.nim +++ b/tests/objects/t12753.nim @@ -1,7 +1,7 @@ discard """ output: ''' -(v: [(v: [0.0, 1.1]), (v: [2.2, 3.3])]) -(v: [(v: [0.0, 1.1]), (v: [2.2, 3.3])]) +(v: [(v: [0.0, 1.125]), (v: [2.25, 3.375])]) +(v: [(v: [0.0, 1.125]), (v: [2.25, 3.375])]) ''' """ @@ -13,7 +13,7 @@ type var a = M(v:[ V(v:[0.0,1.0]), V(v:[2.0,3.0]) ]) - b = M(v:[ V(v:[0.0,0.1]), V(v:[0.2,0.3]) ]) + b = M(v:[ V(v:[0.0,0.125]), V(v:[0.25,0.375]) ]) echo M(v: [V(v: [b.v[0].v[0] + a.v[0].v[0], b.v[0].v[1] + a.v[0].v[1]]), V(v: [b.v[1].v[0] + a.v[1].v[0], b.v[1].v[1] + a.v[1].v[1]])]) |