summary refs log tree commit diff stats
path: root/tests/js/tbasics.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/js/tbasics.nim')
-rw-r--r--tests/js/tbasics.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/js/tbasics.nim b/tests/js/tbasics.nim
index b297bb037..ef84f8bb5 100644
--- a/tests/js/tbasics.nim
+++ b/tests/js/tbasics.nim
@@ -54,7 +54,7 @@ for x in someGlobal: doAssert(x == 0)
 proc tdefault =
   var x = default(int)
   doAssert(x == 0)
-  proc inner(v: openarray[string]) =
+  proc inner(v: openArray[string]) =
     doAssert(v.len == 0)
 
   inner(default(seq[string]))