Skip to content

Commit

Permalink
Fix naming of assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Nov 22, 2023
1 parent be0b23e commit ac692ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/dependency-graph.puml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ skinparam rectangle {
BackgroundColor<<runtime>> lightBlue
BackgroundColor<<provided>> lightGray
}
rectangle "coverage-model\n\n0.33.0" as edu_hm_hafner_coverage_model_jar
rectangle "coverage-model\n\n0.34.0-SNAPSHOT" as edu_hm_hafner_coverage_model_jar
rectangle "spotbugs-annotations\n\n4.7.3" as com_github_spotbugs_spotbugs_annotations_jar
rectangle "error_prone_annotations\n\n2.23.0" as com_google_errorprone_error_prone_annotations_jar
rectangle "streamex\n\n0.8.2" as one_util_streamex_jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void shouldReadArchUnitTests() {
assertThat(testClass.getTestCases()).hasSize(1);

var testCase = getFirstTest(tree);
assertThat(testCase).hasStatus(TestResult.FAILED)
assertThat(testCase).hasResult(TestResult.FAILED)
.hasClassName("Aufgabe3Test")
.hasTestName("shouldSplitToEmptyRight(int)[1]")
.hasType("org.opentest4j.AssertionFailedError");
Expand Down

0 comments on commit ac692ba

Please sign in to comment.