File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tmc-langs-csharp/src/main/java/fi/helsinki/cs/tmc/langs/csharp Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class CSharpTestResultParser {
21
21
22
22
public static RunResult parse (Path path ) throws IOException {
23
23
ObjectMapper mapper = new ObjectMapper ();
24
- List <TestResult > testResults = getTestResults (path , mapper );
24
+ List <TestResult > testResults = getResults (path , mapper );
25
25
26
26
RunResult .Status status = RunResult .Status .PASSED ;
27
27
for (TestResult result : testResults ) {
@@ -35,7 +35,7 @@ public static RunResult parse(Path path) throws IOException {
35
35
return new RunResult (status , immutableResults , logs );
36
36
}
37
37
38
- private static List <TestResult > getTestResults (Path path , ObjectMapper mapper ) throws IOException {
38
+ private static List <TestResult > getResults (Path path , ObjectMapper mapper ) throws IOException {
39
39
byte [] json = Files .readAllBytes (path .resolve (RESULT_FILE ));
40
40
List <TestResult > results = new ArrayList <>();
41
41
You can’t perform that action at this time.
0 commit comments