Update testEddsa2022Valid to testEddsa2022Warning

This commit is contained in:
Xavi Aracil 2024-03-21 18:13:10 +01:00
parent 50b29ee167
commit bb38df6344

View File

@ -390,11 +390,11 @@ public class OB30Tests {
}
@Test
void testEddsa2022Valid() {
void testEddsa2022Warning() {
assertDoesNotThrow(()->{
Report report = validator.run(Samples.OB30.JSON.SIMPLE_EDDSA_20222_JSON.asFileResource());
if(verbose) PrintHelper.print(report, true);
assertValid(report);
assertWarning(report);
});
}