2
0

Fix JNI write-back, bad V3 api usage, duplicate length passing.

This commit is contained in:
Maarten Billemont
2018-06-03 17:58:24 -04:00
parent c08d3a0e8b
commit bc0ffbd552
8 changed files with 27 additions and 15 deletions

View File

@@ -60,7 +60,7 @@ public class MPTests {
}
public Case getCase(final String identifier) {
for (final Case testCase : getCases())
for (final Case testCase : cases)
if (identifier.equals( testCase.getIdentifier() ))
return testCase;

View File

@@ -39,7 +39,7 @@ public class MPMasterKeyTest {
throws Exception {
testSuite = new MPTestSuite();
//testSuite.getTests().addFilters( "v0" );
//testSuite.getTests().addFilters( "v3_type_maximum" );
}
@Test