You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2020/01/05 23:22:34 UTC

[commons-numbers] 04/04: Fixed indentation in test class.

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit 2d8221a8fd931a7beb0b2b57fd616f0a7defee77
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sun Jan 5 23:20:33 2020 +0000

    Fixed indentation in test class.
---
 .../java/org/apache/commons/numbers/combinatorics/FactorialTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/commons-numbers-combinatorics/src/test/java/org/apache/commons/numbers/combinatorics/FactorialTest.java b/commons-numbers-combinatorics/src/test/java/org/apache/commons/numbers/combinatorics/FactorialTest.java
index 17cad27..4dba998 100644
--- a/commons-numbers-combinatorics/src/test/java/org/apache/commons/numbers/combinatorics/FactorialTest.java
+++ b/commons-numbers-combinatorics/src/test/java/org/apache/commons/numbers/combinatorics/FactorialTest.java
@@ -38,14 +38,14 @@ public class FactorialTest {
     @Test
     public void testPrecondition1() {
         Assertions.assertThrows(IllegalArgumentException.class,
-                () -> Factorial.value(-1)
+            () -> Factorial.value(-1)
         );
     }
 
     @Test
     public void testPrecondition2() {
         Assertions.assertThrows(IllegalArgumentException.class,
-                () -> Factorial.value(21)
+            () -> Factorial.value(21)
         );
     }