From cf5946b2ce5243a28af470609684f2209e3c962a Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Fri, 6 Dec 2002 06:39:14 +0000 Subject: [PATCH] Now all the tests run again! Now we need to fix all the Checkstyle errors in the newly added source code. --- .../com/puppycrawl/tools/checkstyle/BaseCheckTestCase.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tests/com/puppycrawl/tools/checkstyle/BaseCheckTestCase.java b/src/tests/com/puppycrawl/tools/checkstyle/BaseCheckTestCase.java index 7c84f9c30..64e0ef7a9 100644 --- a/src/tests/com/puppycrawl/tools/checkstyle/BaseCheckTestCase.java +++ b/src/tests/com/puppycrawl/tools/checkstyle/BaseCheckTestCase.java @@ -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; }