Merge another head
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 27 Feb 2013 17:52:49 +0100
changeset 785cba378ae2fa7
parent 782 b410524f4712
parent 784 81e8d956290c
child 786 d014c9d78b46
Merge another head
rt/vm/src/test/java/org/apidesign/vm4brwsr/TestVM.java
     1.1 --- a/rt/vm/src/test/java/org/apidesign/vm4brwsr/TestVM.java	Wed Feb 27 17:37:18 2013 +0100
     1.2 +++ b/rt/vm/src/test/java/org/apidesign/vm4brwsr/TestVM.java	Wed Feb 27 17:52:49 2013 +0100
     1.3 @@ -68,9 +68,9 @@
     1.4                  ret = code.invokeMethod(ret, "toFP");
     1.5                  ret = code.invokeFunction("Number", ret);
     1.6              } catch (ScriptException ex) {
     1.7 -                fail("Conversion to number failed in " + dumpJS(codeSeq), ex);
     1.8 +                fail("Conversion to number failed in " + dumpJS(codeSeq) + ": " + ex.getMessage(), ex);
     1.9              } catch (NoSuchMethodException ex) {
    1.10 -                fail("Cannot find global Number(x) function in " + dumpJS(codeSeq), ex);
    1.11 +                fail("Cannot find global Number(x) function in " + dumpJS(codeSeq) + ": " + ex.getMessage(), ex);
    1.12              }
    1.13          }
    1.14          return ret;