diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-09-30 22:34:54 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-09-30 22:34:54 +0200 |
commit | e8eb496e6fda1e076d59fc01118af411e488bf34 (patch) | |
tree | 290a8d5092c34646e094ba691c15f9fee2ec8fe8 /tests/concepts | |
parent | ddc131cf07972decc206e033b2dd85a42eb1c98d (diff) | |
download | Nim-e8eb496e6fda1e076d59fc01118af411e488bf34.tar.gz |
make tests green again
Diffstat (limited to 'tests/concepts')
-rw-r--r-- | tests/concepts/t5642.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/concepts/t5642.nim b/tests/concepts/t5642.nim index d1e7bd1dd..f08b4629b 100644 --- a/tests/concepts/t5642.nim +++ b/tests/concepts/t5642.nim @@ -19,7 +19,7 @@ proc nrow*(dt: DataTable) : Natural = return totalLen let - stud = Students (id : @[1,2,3], name : @["Vas", "Pas", "NafNaf"], age : @[10,16,32]) + stud = Students(id : @[1,2,3], name : @["Vas", "Pas", "NafNaf"], age : @[10,16,32]) echo nrow(stud) |