You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by mr...@apache.org on 2021/07/06 12:40:17 UTC

[jackrabbit-oak] branch trunk updated: OAK-9487: WarnLogStringPropertySizeTest may fail with multiple fixtures

This is an automated email from the ASF dual-hosted git repository.

mreutegg pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/trunk by this push:
     new b53392d  OAK-9487: WarnLogStringPropertySizeTest may fail with multiple fixtures
     new a0d97ad  Merge pull request #314 from mreutegg/OAK-9487
b53392d is described below

commit b53392d2ff60b2df35c2fe47d6e86f1f3750f00e
Author: Marcel Reutegger <ma...@gmail.com>
AuthorDate: Tue Jul 6 13:42:45 2021 +0200

    OAK-9487: WarnLogStringPropertySizeTest may fail with multiple fixtures
    
    Prevent parallel execution with Parameterized runner
---
 .../jackrabbit/oak/jcr/session/WarnLogStringPropertySizeTest.java      | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/session/WarnLogStringPropertySizeTest.java b/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/session/WarnLogStringPropertySizeTest.java
index 0ffc07d..e87f7cf 100644
--- a/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/session/WarnLogStringPropertySizeTest.java
+++ b/oak-jcr/src/test/java/org/apache/jackrabbit/oak/jcr/session/WarnLogStringPropertySizeTest.java
@@ -26,6 +26,8 @@ import org.junit.After;
 import org.junit.Before;
 import org.junit.Rule;
 import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
 import org.slf4j.LoggerFactory;
 
 import javax.jcr.Node;
@@ -38,6 +40,7 @@ import static org.junit.Assert.assertTrue;
  * {@code WarnLogStringPropertySizeTest} checks if Warn log is bein added on adding
  * large string properties
  */
+@RunWith(Parameterized.class)
 public class WarnLogStringPropertySizeTest extends AbstractRepositoryTest {
 
     @Rule