Skip to content

Commit 00f415c

Browse files
committed
Rename the jdk17 HQC KEM test from HQC17Test to HQCKEM17Test so it follows the same *KEM17Test convention as the other nine KEM families, updating its AllTests17 registration.
1 parent fddab66 commit 00f415c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

prov/src/test/jdk17/org/bouncycastle/pqc/jcajce/provider/test/AllTests17.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public static Test suite()
1818
TestSuite suite = new TestSuite("PQC JCE Tests (JDK 17)");
1919
suite.addTestSuite(CMCEKEM17Test.class);
2020
suite.addTestSuite(FrodoKEM17Test.class);
21-
suite.addTestSuite(HQC17Test.class);
21+
suite.addTestSuite(HQCKEM17Test.class);
2222
suite.addTestSuite(MLKEM17Test.class);
2323
suite.addTestSuite(NTRUKEM17Test.class);
2424
suite.addTestSuite(NTRULPRimeKEM17Test.class);

prov/src/test/jdk17/org/bouncycastle/pqc/jcajce/provider/test/HQC17Test.java renamed to prov/src/test/jdk17/org/bouncycastle/pqc/jcajce/provider/test/HQCKEM17Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
import junit.framework.TestCase;
2020

21-
public class HQC17Test
21+
public class HQCKEM17Test
2222
extends TestCase
2323
{
2424
public static void main(String[] args)
2525
throws Exception
2626
{
27-
HQC17Test test = new HQC17Test();
27+
HQCKEM17Test test = new HQCKEM17Test();
2828
test.setUp();
2929
test.testKEM();
3030
}

0 commit comments

Comments
 (0)