This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push: new 1333272 Sort members. 1333272 is described below commit 133327272a3c7466ff53acff875b473556d0a4b2 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jun 14 14:59:02 2020 -0400 Sort members. --- src/test/java/org/apache/commons/lang3/FunctionsTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/test/java/org/apache/commons/lang3/FunctionsTest.java b/src/test/java/org/apache/commons/lang3/FunctionsTest.java index 907f6e4..043f135 100644 --- a/src/test/java/org/apache/commons/lang3/FunctionsTest.java +++ b/src/test/java/org/apache/commons/lang3/FunctionsTest.java @@ -236,12 +236,6 @@ class FunctionsTest { } @Test - public void testConstructor() { - // We allow this, which must be an omission to make the ctor private. - new Functions(); - } - - @Test void testAcceptBiConsumer() { final IllegalStateException ise = new IllegalStateException(); final Testable<?, ?> testable = new Testable(null); @@ -699,6 +693,12 @@ class FunctionsTest { } @Test + public void testConstructor() { + // We allow this, which must be an omission to make the ctor private. + new Functions(); + } + + @Test public void testGetAsBooleanSupplier() { final IllegalStateException ise = new IllegalStateException(); final Testable<?, ?> testable = new Testable<>(ise);