Skip to content

Commit

Permalink
fix quality violations
Browse files Browse the repository at this point in the history
  • Loading branch information
uchitsa committed Dec 26, 2024
1 parent c30c03f commit 08c9c0d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/com/jcabi/log/ListDecorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ void testPrintsRight(final Object list, final String text,
final int flags, final int width, final int precision) throws DecorException {
Locale.setDefault(Locale.US);
MatcherAssert.assertThat(
"should prints right",
new Printed(new ListDecor(list), flags, width, precision),
Matchers.hasToString(text)
);
Expand All @@ -63,6 +64,7 @@ void testLogsRight(final Object list, final String text,
final int flags, final int width, final int precision) throws DecorException {
Locale.setDefault(Locale.US);
MatcherAssert.assertThat(
"should logs right",
new Logged(new ListDecor(list), flags, width, precision),
Matchers.hasToString(text)
);
Expand Down

0 comments on commit 08c9c0d

Please sign in to comment.