Fixing two tests in Jerry test suite.

This commit is contained in:
Ruben Ayrapetyan 2014-10-13 14:58:46 +04:00
parent 7819adcf99
commit db6b12f958
2 changed files with 4 additions and 2 deletions

View File

@ -13,4 +13,4 @@
// limitations under the License.
var s = 'hello';
asssert(s[0] == 'h');
assert(s[0] == 'h');

View File

@ -18,4 +18,6 @@ function foo() {
var b = 20;
assert(a + b === 30);
}
}
foo();