Skip to content

Commit

Permalink
EnumUtilsTest: fix spaces between enum constants (closes #241)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaabramov authored and PascalSchumacher committed Feb 22, 2017
1 parent 8767cd4 commit 914844e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/test/java/org/apache/commons/lang3/EnumUtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 914844e

Please sign in to comment.