Skip to content

Commit

Permalink
Fixed InputType test
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed May 27, 2013
1 parent d989f06 commit 05dce9a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -199,7 +199,7 @@ public void testInputType()
{
HintsFacet hints = firstName.getFacet(HintsFacet.class);
InputType inputType = hints.getInputType();
Assert.assertNull(inputType);
Assert.assertEquals(InputType.DEFAULT, inputType);

hints.setInputType(InputType.TEXTAREA);
Assert.assertSame(firstName, firstName);
Expand Down

0 comments on commit 05dce9a

Please sign in to comment.