Skip to content

Commit 039e678

Browse files
committedDec 27, 2018
#867 updated tests
1 parent 907234c commit 039e678

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎qulice-checkstyle/src/test/java/com/qulice/checkstyle/CheckstyleValidatorTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,10 @@ public void reportsErrorWhenCommentOrJavadocIsTooLong() throws Exception {
197197
results,
198198
Matchers.hasItems(
199199
new ViolationMatcher(
200-
"Line is longer than 80 characters (found 82)", ""
200+
"Line is longer than 100 characters (found 104)", ""
201201
),
202202
new ViolationMatcher(
203-
"Line is longer than 80 characters (found 85)", ""
203+
"Line is longer than 100 characters (found 103)", ""
204204
)
205205
)
206206
);

‎qulice-checkstyle/src/test/resources/com/qulice/checkstyle/TooLongLines.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
/**
77
* Very long lines.
8-
* @deprecated Very very very very very very very very very very very long reason.
8+
* @deprecated Very very very very very very very very very very very long reason, extended line length.
99
*/
1010
@Deprecated
1111
public class TooLongLines {
12-
// @deprecated is used here because of very very very very very very long reason.
12+
// @deprecated is used here because of very very very very very very long reason, even longer line.
1313
}

0 commit comments

Comments
 (0)
Please sign in to comment.