Skip to content

Commit 236cd3a

Browse files
committed
checkstyle fix
1 parent bfdc0ec commit 236cd3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tmc-langs-csharp/src/main/java/fi/helsinki/cs/tmc/langs/csharp/CSharpTestResultParser.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class CSharpTestResultParser {
2121

2222
public static RunResult parse(Path path) throws IOException {
2323
ObjectMapper mapper = new ObjectMapper();
24-
List<TestResult> testResults = getTestResults(path, mapper);
24+
List<TestResult> testResults = getResults(path, mapper);
2525

2626
RunResult.Status status = RunResult.Status.PASSED;
2727
for (TestResult result : testResults) {
@@ -35,7 +35,7 @@ public static RunResult parse(Path path) throws IOException {
3535
return new RunResult(status, immutableResults, logs);
3636
}
3737

38-
private static List<TestResult> getTestResults(Path path, ObjectMapper mapper) throws IOException {
38+
private static List<TestResult> getResults(Path path, ObjectMapper mapper) throws IOException {
3939
byte[] json = Files.readAllBytes(path.resolve(RESULT_FILE));
4040
List<TestResult> results = new ArrayList<>();
4141

0 commit comments

Comments
 (0)