This is an automated email from the ASF dual-hosted git repository.
coheigea pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/directory-kerby.git
The following commit(s) were added to refs/heads/trunk by this push:
new 324385f Enabling some @Ignored tests
324385f is described below
commit 324385fdec3ccc765e27caecd8c8e221c83833cb
Author: Colm O hEigeartaigh <coheigea@apache.org>
AuthorDate: Mon Nov 11 15:15:51 2019 +0000
Enabling some @Ignored tests
---
.../kerby-asn1/src/main/java/org/apache/kerby/asn1/Asn1.java | 2 +-
.../kerby-asn1/src/test/java/org/apache/kerby/asn1/Asn1DumpTest.java | 5 +----
2 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/kerby-common/kerby-asn1/src/main/java/org/apache/kerby/asn1/Asn1.java b/kerby-common/kerby-asn1/src/main/java/org/apache/kerby/asn1/Asn1.java
index 62b96d7..af1973b 100644
--- a/kerby-common/kerby-asn1/src/main/java/org/apache/kerby/asn1/Asn1.java
+++ b/kerby-common/kerby-asn1/src/main/java/org/apache/kerby/asn1/Asn1.java
@@ -174,7 +174,7 @@ public final class Asn1 {
}
/**
- * See avove.
+ * See above.
*/
public static void decodeAndDump(byte[] content) throws IOException {
//String hexStr = HexUtil.bytesToHex(content);
diff --git a/kerby-common/kerby-asn1/src/test/java/org/apache/kerby/asn1/Asn1DumpTest.java
b/kerby-common/kerby-asn1/src/test/java/org/apache/kerby/asn1/Asn1DumpTest.java
index 479dd94..ef1969c 100644
--- a/kerby-common/kerby-asn1/src/test/java/org/apache/kerby/asn1/Asn1DumpTest.java
+++ b/kerby-common/kerby-asn1/src/test/java/org/apache/kerby/asn1/Asn1DumpTest.java
@@ -27,7 +27,6 @@ import java.io.IOException;
public class Asn1DumpTest {
@Test
- @org.junit.Ignore
public void testDumpWithPersonnelRecord() throws IOException {
try {
PersonnelRecord pr = DataTest.createSamplePersonnel();
@@ -43,7 +42,6 @@ public class Asn1DumpTest {
}
@Test
- @org.junit.Ignore
public void testDumpWithCompressedData() throws IOException {
String hexStr = TestUtil.readStringFromTxtFile("/compressed-data.txt");
try {
@@ -56,7 +54,6 @@ public class Asn1DumpTest {
}
@Test
- @org.junit.Ignore
public void testDumpWithSignedData() throws IOException {
String hexStr = TestUtil.readStringFromTxtFile("/signed-data.txt");
try {
@@ -69,7 +66,6 @@ public class Asn1DumpTest {
}
@Test
- @org.junit.Ignore
public void testDumpWithDerData() throws IOException {
byte[] data = TestUtil.readBytesFromBinFile("/der-data.dat");
try {
@@ -92,4 +88,5 @@ public class Asn1DumpTest {
+ "empty-container.txt failed. " + e.toString());
}
}
+
}
|