chore: fixe rest of comments tests.

This commit is contained in:
Artem Kobzar
2022-04-08 01:38:12 +02:00
committed by teamcity
parent f5e7b9886c
commit 7d7490eaa7
3 changed files with 3 additions and 1 deletions
@@ -1,5 +1,6 @@
function test(n) {
var result;
/*synthetic*/
result = n >= 0 ? n : -n;
return result;
}
@@ -1,4 +1,5 @@
function test(n) {
/*synthetic*/
return n >= 0 ? n : -n;
}