Skip to content

Commit

Permalink
fixing test spectation
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Plentz committed Mar 2, 2015
1 parent e025326 commit f4658d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/typing_test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

module("typing");
test("format the field value", function() {
test("accepts keys in sequence", function() {
var input = $("#input1").maskMoney();
input.trigger("focus");
keypress(input, 1);
Expand Down Expand Up @@ -32,5 +32,5 @@ test("with a pre-set value", function() {
input.val("1");
input.trigger("focus");
keypress(input, 1);
equal(input.val(), "0.11", "accept the input and format correctly");
equal(input.val(), "10.01", "accept the input and format correctly");
});

0 comments on commit f4658d3

Please sign in to comment.