Fix tests from jerry-test-suite.

This commit is contained in:
Ilmir Usmanov
2014-10-16 18:03:35 +04:00
parent 2637911b3e
commit 2a5cbe5975
30 changed files with 35 additions and 31 deletions
@@ -12,5 +12,5 @@
// See the License for the specific language governing permissions and
// limitations under the License.
var x = 123.00, y = 0.0123e+4
assert(x === y)
var x = 123.00, y = 0.0123e+4, eps = .000001
assert(x <= y + eps && x >= y - eps)