summary refs log tree commit diff stats
path: root/tests/array/tarrayplus.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/array/tarrayplus.nim')
-rw-r--r--tests/array/tarrayplus.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/array/tarrayplus.nim b/tests/array/tarrayplus.nim
index 0ea349f4f..09bae77fd 100644
--- a/tests/array/tarrayplus.nim
+++ b/tests/array/tarrayplus.nim
@@ -1,12 +1,12 @@
 discard """
-  errormsg: "type mismatch: got (array[0..2, float], array[0..1, float])"
+  errormsg: "type mismatch: got <array[0..2, float], array[0..1, float]>"
 """
 
 proc `+`*[R, T] (v1, v2: array[R, T]): array[R, T] =
   for i in low(v1)..high(v1):
     result[i] = v1[i] + v2[i]
 
-var 
+var
   v1: array[0..2, float] = [3.0, 1.2, 3.0]
   v2: array[0..1, float] = [2.0, 1.0]
   v3 = v1 + v2