summary refs log tree commit diff stats
path: root/tests/stdlib/tstrtabs.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tstrtabs.nim')
-rw-r--r--tests/stdlib/tstrtabs.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/tstrtabs.nim b/tests/stdlib/tstrtabs.nim
index 8404a6c88..a248cc3b2 100644
--- a/tests/stdlib/tstrtabs.nim
+++ b/tests/stdlib/tstrtabs.nim
@@ -4,7 +4,7 @@ var tab = newStringTable({"key1": "val1", "key2": "val2"},
                          modeStyleInsensitive)
 for i in 0..80:
   tab["key_" & $i] = "value" & $i
-  
+
 for key, val in pairs(tab):
   writeLine(stdout, key, ": ", val)
 writeLine(stdout, "length of table ", $tab.len)