Fixed broken test.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4515 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-12-05 02:25:13 +00:00
parent e596462ec9
commit dd4722ab17

View File

@@ -27,8 +27,8 @@ public class FileNameValidatorTest extends TestCase
{
public void testValidator()
{
String [] badNames = new String[] { "\"", "\\", "/", "<", ">", "?", "*", "%", "&", "+",
":", ";", "|" };
String [] badNames = { "\"", "\\", "/", "<", ">", "?", "*", "%", "&",
":", ";", "|" };
for (String name : badNames)
{
assertFalse(FileNameValidator.IsValid(name));