summary refs log tree commit diff stats
path: root/tests/vm
diff options
context:
space:
mode:
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]