Skip to content

Commit a05e8f0

Browse files
committed
Fix assertion order
1 parent c8cd84a commit a05e8f0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/edu/hm/hafner/analysis/IssueTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,11 @@ void shouldFixStartEndLineColumnValues(final String description, final int lineS
170170

171171
try (var softly = new SoftAssertions()) {
172172
softly.assertThat(issue)
173+
.as(description)
173174
.hasLineStart(expectedLineStart)
174175
.hasColumnStart(expectedColumnStart)
175176
.hasLineEnd(expectedLineEnd)
176-
.hasColumnEnd(expectedColumnEnd)
177-
.as(description);
177+
.hasColumnEnd(expectedColumnEnd);
178178
}
179179
}
180180

0 commit comments

Comments
 (0)