Github user jbduncan commented on a diff in the pull request: https://github.com/apache/commons-text/pull/56#discussion_r127854299 --- Diff: src/test/java/org/apache/commons/text/ExtendedMessageFormatTest.java --- @@ -55,11 +55,11 @@ public void testExtendedFormats() { final String pattern = "Lower: {0,lower} Upper: {1,upper}"; final ExtendedMessageFormat emf = new ExtendedMessageFormat(pattern, registry); assertEquals("TOPATTERN", pattern, emf.toPattern()); - assertEquals("Lower: foo Upper: BAR", emf.format(new Object[] {"foo", "bar"})); - assertEquals("Lower: foo Upper: BAR", emf.format(new Object[] {"Foo", "Bar"})); - assertEquals("Lower: foo Upper: BAR", emf.format(new Object[] {"FOO", "BAR"})); - assertEquals("Lower: foo Upper: BAR", emf.format(new Object[] {"FOO", "bar"})); - assertEquals("Lower: foo Upper: BAR", emf.format(new Object[] {"foo", "BAR"})); + assertEquals("Lower: foo Upper: BAR", emf.format(new Object[]{"foo", "bar"})); + assertEquals("Lower: foo Upper: BAR", emf.format(new Object[]{"Foo", "Bar"})); + assertEquals("Lower: foo Upper: BAR", emf.format(new Object[]{"FOO", "BAR"})); + assertEquals("Lower: foo Upper: BAR", emf.format(new Object[]{"FOO", "bar"})); + assertEquals("Lower: foo Upper: BAR", emf.format(new Object[]{"foo", "BAR"})); --- End diff -- Unless whitespace changes like this one are required by Checkstyle, please consider reverting them to prevent polluting the Git history.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org