You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2017/02/22 22:23:46 UTC

[lang] EnumUtilsTest: fix spaces between enum constants (closes #241)

Repository: commons-lang
Updated Branches:
  refs/heads/master 8767cd4f1 -> 914844e1b


EnumUtilsTest: fix spaces between enum constants (closes #241)


Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/914844e1
Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/914844e1
Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/914844e1

Branch: refs/heads/master
Commit: 914844e1b226a1ac7ba45626ecfdfb56e7b2e263
Parents: 8767cd4
Author: Andrii <aa...@gmail.com>
Authored: Tue Feb 21 23:08:38 2017 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Wed Feb 22 23:22:31 2017 +0100

----------------------------------------------------------------------
 src/test/java/org/apache/commons/lang3/EnumUtilsTest.java | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-lang/blob/914844e1/src/test/java/org/apache/commons/lang3/EnumUtilsTest.java
----------------------------------------------------------------------
diff --git a/src/test/java/org/apache/commons/lang3/EnumUtilsTest.java b/src/test/java/org/apache/commons/lang3/EnumUtilsTest.java
index d496cbb..5845ef6 100644
--- a/src/test/java/org/apache/commons/lang3/EnumUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/EnumUtilsTest.java
@@ -420,8 +420,9 @@ enum Enum64 {
     A32, A33, A34, A35, A36, A37, A38, A39, A40, A41, A42, A43, A44, A45, A46, A47,
     A48, A49, A50, A51, A52, A53, A54, A55, A56, A57, A58, A59, A60, A61, A62, A63
 }
+
 enum TooMany {
-    A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,
-    A1,B1,C1,D1,E1,F1,G1,H1,I1,J1,K1,L1,M1,N1,O1,P1,Q1,R1,S1,T1,U1,V1,W1,X1,Y1,Z1,
-    A2,B2,C2,D2,E2,F2,G2,H2,I2,J2,K2,L2,M2
+    A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z,
+    A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1,
+    U1, V1, W1, X1, Y1, Z1, A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2
 }