From 2cf3e7d4613c6f16829b1e4673601205dfc5612d Mon Sep 17 00:00:00 2001 From: Diego Plentz Date: Sun, 1 Mar 2015 23:33:26 -0300 Subject: [PATCH] just to make it clearer --- test/typing_test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/typing_test.js b/test/typing_test.js index 376156f..f6ba36c 100644 --- a/test/typing_test.js +++ b/test/typing_test.js @@ -31,6 +31,6 @@ test("with a pre-set value", function() { var input = $("#input1").maskMoney(); input.val("1"); input.trigger("focus"); - keypress(input, 1); - equal(input.val(), "10.01", "accept the input and format correctly"); + keypress(input, 2); + equal(input.val(), "10.02", "accept the input and format correctly"); });