| Index: test/message/try-catch-finally-return-in-finally.js
|
| diff --git a/test/message/try-catch-finally-return-in-finally.js b/test/message/try-catch-finally-return-in-finally.js
|
| index d23fe35c8cfd7b4e5ea27d2d9d7643bad001e60d..58a62a8bff2c83f040bf71c64051e025dbc652cf 100644
|
| --- a/test/message/try-catch-finally-return-in-finally.js
|
| +++ b/test/message/try-catch-finally-return-in-finally.js
|
| @@ -36,4 +36,5 @@ function f() {
|
| }
|
| }
|
|
|
| -print(f());
|
| +var result = f();
|
| +if (result != 42) print("Wrong result: " + result);
|
|
|