- Fixed testcase.


git-svn-id: https://svn.apache.org/repos/asf/incubator/zetacomponents/trunk@1180889 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/UserInput/tests/tools_test.php b/UserInput/tests/tools_test.php
index 8a2b473..007da76 100644
--- a/UserInput/tests/tools_test.php
+++ b/UserInput/tests/tools_test.php
@@ -131,7 +131,7 @@
     {
         // The filter should be an existing filter
         $def = array( 'test' => new ezcInputFormDefinitionElement( ezcInputFormDefinitionElement::REQUIRED, 'foobar' ) );
-        self::assertEquals( array( ezcInputForm::DEF_UNSUPPORTED_FILTER, "The filter 'foobar' for element 'test' does not exist. Pick one of: int, boolean, float, validate_regexp, validate_url, validate_email, validate_ip, string, stripped, encoded, special_chars, unsafe_raw, email, url, number_int, number_float, magic_quotes, callback" ), ezcInputForm::validateDefinition( $def ) );
+        self::assertEquals( array( ezcInputForm::DEF_UNSUPPORTED_FILTER, "The filter 'foobar' for element 'test' does not exist. Pick one of: int, boolean, float, validate_regexp, validate_url, validate_email, validate_ip, string, stripped, encoded, special_chars, full_special_chars, unsafe_raw, email, url, number_int, number_float, magic_quotes, callback" ), ezcInputForm::validateDefinition( $def ) );
     }
 
     public function testValidateDefinitionFieldName()