From c91cf3068f7d215ca8aaafed505b78f389a2885e Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 17 Dec 2014 01:43:36 +0100 Subject: [PATCH] JS tests cleaned up --- tests/js/tbyvar.nim | 7 ++++--- tests/js/test1.nim | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/js/tbyvar.nim b/tests/js/tbyvar.nim index 5ed2de1da5..1269e6f66e 100644 --- a/tests/js/tbyvar.nim +++ b/tests/js/tbyvar.nim @@ -4,12 +4,13 @@ bar 12 2 foo 12 bar 12 -2''' +2 +''' """ # bug #1489 -proc foo(x: int) = echo "foo: ", x -proc bar(y: var int) = echo "bar: ", y +proc foo(x: int) = echo "foo ", x +proc bar(y: var int) = echo "bar ", y var x = 12 foo(x) diff --git a/tests/js/test1.nim b/tests/js/test1.nim index 09ba306760..7f1d346f08 100644 --- a/tests/js/test1.nim +++ b/tests/js/test1.nim @@ -10,9 +10,9 @@ import var inputElement = "1123" -proc OnButtonClick(inputElement: string) {.exportc.} = +proc onButtonClick(inputElement: string) {.exportc.} = let v = $inputElement - if v.allCharsInSet(whiteSpace): + if v.allCharsInSet(WhiteSpace): echo "only whitespace, hu?" else: var x = parseInt(v)