diff options
author | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:34:34 -0500 |
---|---|---|
committer | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:34:34 -0500 |
commit | 69e15ac32fd92abe1d950275ab4b0d830d8b13e1 (patch) | |
tree | 5075b3b8a5ab2458a3bd23a652c31419c41bba32 /tests/effects | |
parent | b6252af5c6ce99c6eaec91fb5570143151660b74 (diff) | |
download | Nim-69e15ac32fd92abe1d950275ab4b0d830d8b13e1.tar.gz |
renamed writeln to writeLine in tests
Diffstat (limited to 'tests/effects')
-rw-r--r-- | tests/effects/teffects1.nim | 2 | ||||
-rw-r--r-- | tests/effects/teffects2.nim | 2 | ||||
-rw-r--r-- | tests/effects/teffects3.nim | 2 | ||||
-rw-r--r-- | tests/effects/teffects4.nim | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/effects/teffects1.nim b/tests/effects/teffects1.nim index ea1ea7b21..fad26a8d6 100644 --- a/tests/effects/teffects1.nim +++ b/tests/effects/teffects1.nim @@ -13,7 +13,7 @@ type proc forw: int {. .} proc lier(): int {.raises: [IO2Error].} = - writeln stdout, "arg" + writeLine stdout, "arg" proc forw: int = raise newException(IOError, "arg") diff --git a/tests/effects/teffects2.nim b/tests/effects/teffects2.nim index 89ad16edc..a97eacca6 100644 --- a/tests/effects/teffects2.nim +++ b/tests/effects/teffects2.nim @@ -13,7 +13,7 @@ type proc forw: int {.raises: [].} proc lier(): int {.raises: [IOError].} = - writeln stdout, "arg" + writeLine stdout, "arg" proc forw: int = raise newException(IOError, "arg") diff --git a/tests/effects/teffects3.nim b/tests/effects/teffects3.nim index 78543a929..3d597560f 100644 --- a/tests/effects/teffects3.nim +++ b/tests/effects/teffects3.nim @@ -12,7 +12,7 @@ type EIO2 = ref object of EIO proc raiser(): int {.tags: [TObj, FWriteIO].} = - writeln stdout, "arg" + writeLine stdout, "arg" var o: TObjB o.fn = raiser diff --git a/tests/effects/teffects4.nim b/tests/effects/teffects4.nim index 4584e6dc8..e2aa440a9 100644 --- a/tests/effects/teffects4.nim +++ b/tests/effects/teffects4.nim @@ -15,7 +15,7 @@ proc q() {.tags: [FIO].} = nil proc raiser(): int = - writeln stdout, "arg" + writeLine stdout, "arg" if true: q() |