Trying to get ParameterTests.null_bound_to_primitive_field_is_an_error to pass in Jenkins
diff --git a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ParameterTests.groovy b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ParameterTests.groovy index 6f35e60..f7a401b 100644 --- a/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ParameterTests.groovy +++ b/tapestry-core/src/test/groovy/org/apache/tapestry5/integration/app1/ParameterTests.groovy
@@ -29,6 +29,9 @@ void null_bound_to_primitive_field_is_an_error() { openLinks "Null Bound to Primitive Demo" + + // Hack to try to avoid test to fail in Jenkins even though it passes locally. + Thread.sleep(5000); assertTextPresent "Parameter 'value' of component NullBindingToPrimitive:showint is bound to null. This parameter is not allowed to be null." }