Skip to content

Commit

Permalink
Remove extra logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Sep 29, 2021
1 parent 1341bb0 commit 648c437
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/test/java/edu/illinois/cs/cs125/jenisol/core/Helpers.kt
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,7 @@ fun Class<*>.test() = this.testingClasses().apply {
}.forEach { incorrect ->
if (incorrect.simpleName.startsWith("Design")) {
shouldThrow<SubmissionDesignError> {
try {
submission(incorrect)
} catch (e: Exception) {
e.printStackTrace()
throw e
}
submission(incorrect)
}
} else {
check(!primarySolution.isDesignOnly()) {
Expand Down

0 comments on commit 648c437

Please sign in to comment.