mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-08 20:47:59 -05:00
Removing the orion acceptance tests (#3086)
* Not executing Orion acceptance tests Signed-off-by: Jiri Peinlich <jiri.peinlich@gmail.com> * Removing ORION from enclave lists for tests Signed-off-by: Jiri Peinlich <jiri.peinlich@gmail.com>
This commit is contained in:
@@ -14,8 +14,19 @@
|
||||
*/
|
||||
package org.hyperledger.enclave.testutil;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
public enum EnclaveType {
|
||||
ORION,
|
||||
TESSERA,
|
||||
NOOP
|
||||
NOOP;
|
||||
|
||||
public static List<EnclaveType> valuesForTests() {
|
||||
return Arrays.stream(values())
|
||||
.filter(enclaveType -> enclaveType != NOOP)
|
||||
.filter(enclaveType -> enclaveType != ORION)
|
||||
.collect(Collectors.toList());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user