aboutsummaryrefslogtreecommitdiff
path: root/src/test/model/csr/AttributesTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/model/csr/AttributesTest.java')
-rw-r--r--src/test/model/csr/AttributesTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/model/csr/AttributesTest.java b/src/test/model/csr/AttributesTest.java
index eebdbfb..5c40a65 100644
--- a/src/test/model/csr/AttributesTest.java
+++ b/src/test/model/csr/AttributesTest.java
@@ -59,7 +59,7 @@ public class AttributesTest {
Byte[] a2 = TestConstants.CSR_ATTR_2.encodeDER();
Byte[] a1 = TestConstants.CSR_ATTR_1.encodeDER();
assertArrayEquals(
- Stream.of(Arrays.asList(new Byte[]{0x31, (byte) (a2.length + a1.length)}),
+ Stream.of(Arrays.asList((byte) 0x31, (byte) (a2.length + a1.length)),
Arrays.asList(a2),
Arrays.asList(a1))
.flatMap(Collection::stream)