We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fabf1a commit aed9f14Copy full SHA for aed9f14
src/test/java/com/puppycrawl/tools/checkstyle/filters/AbstractPatchFilterEvaluationTest.java
@@ -34,6 +34,7 @@
34
import java.util.Arrays;
35
import java.util.Collections;
36
import java.util.List;
37
+import java.util.Locale;
38
import java.util.stream.Collectors;
39
40
import com.puppycrawl.tools.checkstyle.AbstractModuleTestSupport;
@@ -51,6 +52,8 @@ abstract class AbstractPatchFilterEvaluationTest extends AbstractModuleTestSuppo
51
52
53
protected void testByConfig(String configPath)
54
throws Exception {
55
+ Locale.setDefault(Locale.ENGLISH);
56
+
57
final String inputFile = configPath.replaceFirst(
58
"(default|zero)ContextConfig.xml", "");
59
// we can add here any variable to provide path to patch name by PropertiesExpander
0 commit comments