diff options
author | Arne Döring <arne.doering@gmx.net> | 2018-11-28 09:43:22 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:19 +0100 |
commit | 465e7421827e752d94d1f283b6ce23f6b4125306 (patch) | |
tree | 532ce11bbe566e857a2b3aa21a7c651ce27fe38c /tests | |
parent | e9ea8fb6b032702de982c59b8391c4419efc3c46 (diff) | |
download | Nim-465e7421827e752d94d1f283b6ce23f6b4125306.tar.gz |
fix js category
Diffstat (limited to 'tests')
-rw-r--r-- | tests/js/t7224.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/js/t7224.nim b/tests/js/t7224.nim index 2d7ee1336..be9d0ae9c 100644 --- a/tests/js/t7224.nim +++ b/tests/js/t7224.nim @@ -7,7 +7,7 @@ t7224.ccc, line: 15 t7224.ddd, line: 12 ''' """ - + proc ddd() = raise newException(IOError, "didn't do stuff") @@ -22,5 +22,6 @@ proc aaa() = try: aaa() + except IOError as e: echo getStackTrace(e) |