This commit is contained in:
Chris Frohoff
2022-03-24 23:51:22 -07:00
parent f778c5d0ec
commit 84affc3092
@@ -84,7 +84,7 @@ public class PayloadsTest {
int tries = 1;
if ( t != null ) {
if (isForceTests()) {
if (! isForceTests()) {
if ( !t.skip().isEmpty() ) {
Assume.assumeTrue(t.skip(), false);
}
@@ -146,7 +146,7 @@ public class PayloadsTest {
}
private static boolean isForceTests() {
return System.getProperty("forceTests") == null;
return System.getProperty("forceTests") != null;
}
private static Callable<byte[]> makeSerializeCallable ( final Class<? extends ObjectPayload<?>> payloadClass, final String command ) {