Skip to content

Commit

Permalink
Merge branch 'main' into server-communicator
Browse files Browse the repository at this point in the history
  • Loading branch information
webecke authored Nov 7, 2024
2 parents a7b68f5 + eedbfc8 commit 53a7fb8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class QualityAnalyzer {
static {
Path libsPath = new File("phases", "libs").toPath();
try {
checkStyleJarPath = new File(libsPath.toFile(), "checkstyle-1.0.7.jar").getCanonicalPath();
checkStyleJarPath = new File(libsPath.toFile(), "checkstyle-1.0.8.jar").getCanonicalPath();
File qualityRubric = new File(libsPath.toFile(), "qualityRubric.json");
qualityRubricItems = Serializer.deserialize(new FileReader(qualityRubric), QualityRubric.class);
} catch (IOException e) {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,8 @@ private void assertMessages(String username, ServerMessage.ServerMessageType[] e
}
}
} catch(AssertionError e) {
e.printStackTrace();
Assertions.fail("Expected message types matching %s for %s, got %s"
.formatted(Arrays.toString(expectedTypes), username, messages.reversed()));
.formatted(Arrays.toString(expectedTypes), username, messages.reversed()), e);
}
}

Expand Down

0 comments on commit 53a7fb8

Please sign in to comment.