Now all the tests run again! Now we need to fix all the

Checkstyle errors in the newly added source code.
This commit is contained in:
Oliver Burn 2002-12-06 06:39:14 +00:00
parent 5b90aaa412
commit cf5946b2ce
1 changed files with 1 additions and 2 deletions

View File

@ -36,8 +36,7 @@ public abstract class BaseCheckTestCase
public static DefaultConfiguration createCheckConfig(Class aClazz)
{
final DefaultConfiguration checkConfig =
new DefaultConfiguration("test");
checkConfig.addAttribute("classname", aClazz.getName());
new DefaultConfiguration(aClazz.getName());
return checkConfig;
}