You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2022/02/09 05:51:31 UTC

[sling-org-apache-sling-performance] branch master updated: SLING-11106: fix NPE in tests of jcr-resource-2.1.0

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

cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-performance.git


The following commit(s) were added to refs/heads/master by this push:
     new fbe760c  SLING-11106: fix NPE in tests of jcr-resource-2.1.0
     new 9445eac  Merge pull request #1 from reschke/SLING-11106
fbe760c is described below

commit fbe760c470f0eb59a2ebb6ddb9ba7777170bc280
Author: Julian Reschke <ju...@gmx.de>
AuthorDate: Tue Feb 8 14:58:33 2022 +0100

    SLING-11106: fix NPE in tests of jcr-resource-2.1.0
---
 .../src/test/java/org/apache/sling/performance/PerformanceTest.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/jcr-resource-2.1.0/src/test/java/org/apache/sling/performance/PerformanceTest.java b/jcr-resource-2.1.0/src/test/java/org/apache/sling/performance/PerformanceTest.java
index 37d5a9a..94923c0 100644
--- a/jcr-resource-2.1.0/src/test/java/org/apache/sling/performance/PerformanceTest.java
+++ b/jcr-resource-2.1.0/src/test/java/org/apache/sling/performance/PerformanceTest.java
@@ -104,6 +104,8 @@ public class PerformanceTest {
         Helper helper = new Helper();
         
         ParameterizedTestList testCenter = new ParameterizedTestList();
+        testCenter.setTestSuiteTitle("jcr.resource-2.1.0");
+
         testCenter.addTestObject(new ResolveNonExistingWithManyVanityPathTest("ResolveNonExistingWith1000VanityPathTest",helper, 100, 10));
         testCenter.addTestObject(new ResolveNonExistingWithManyVanityPathTest("ResolveNonExistingWith5000VanityPathTest",helper, 100, 50));
         testCenter.addTestObject(new ResolveNonExistingWithManyVanityPathTest("ResolveNonExistingWith10000VanityPathTest",helper, 100, 100));