summary refs log tree commit diff stats
path: root/tests/vm
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-03-27 19:43:17 +0100
committerAraq <rumpf_a@web.de>2014-03-27 19:43:17 +0100
commit76ef7529575d9cff2cb97117fe9b000f2af928bd (patch)
treeeddc69a46914d06ba7d3827ae701fddd086cef56 /tests/vm
parent3365b42bbe5e09f8e8a739597ae5e49e2ff2c259 (diff)
downloadNim-76ef7529575d9cff2cb97117fe9b000f2af928bd.tar.gz
made some tests green
Diffstat (limited to 'tests/vm')
-rw-r--r--tests/vm/trgba.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/trgba.nim b/tests/vm/trgba.nim
index ec79f6aca..b1d94702f 100644
--- a/tests/vm/trgba.nim
+++ b/tests/vm/trgba.nim
@@ -6,7 +6,7 @@ discard """
 
 #bug #1009
 type
-  TAggRgba8* = array[4, byte]
+  TAggRgba8* = array[4, Byte]
 
 template R*(self: TAggRgba8): Byte = self[0]   
 template G*(self: TAggRgba8): Byte = self[1]