You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/09/18 20:32:12 UTC

[lucene-solr] branch reference_impl_dev updated: @860 Should be public before/after class methods.

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

markrmiller pushed a commit to branch reference_impl_dev
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 66ad7d6  @860 Should be public before/after class methods.
66ad7d6 is described below

commit 66ad7d66499a9b0dc7961d327a0ad4ceb4b2b4ef
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Fri Sep 18 15:31:48 2020 -0500

    @860 Should be public before/after class methods.
---
 .../apache/solr/cloud/TestCloudPhrasesIdentificationComponent.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/core/src/test/org/apache/solr/cloud/TestCloudPhrasesIdentificationComponent.java b/solr/core/src/test/org/apache/solr/cloud/TestCloudPhrasesIdentificationComponent.java
index f122600..ed69989 100644
--- a/solr/core/src/test/org/apache/solr/cloud/TestCloudPhrasesIdentificationComponent.java
+++ b/solr/core/src/test/org/apache/solr/cloud/TestCloudPhrasesIdentificationComponent.java
@@ -62,7 +62,7 @@ public class TestCloudPhrasesIdentificationComponent extends SolrCloudTestCase {
   private static final ArrayList<Http2SolrClient> CLIENTS = new ArrayList<>(5);
 
   @BeforeClass
-  private static void createMiniSolrCloudCluster() throws Exception {
+  public static void createMiniSolrCloudCluster() throws Exception {
     
     // multi replicas should not matter...
     final int repFactor = usually() ? 1 : 2;
@@ -111,7 +111,7 @@ public class TestCloudPhrasesIdentificationComponent extends SolrCloudTestCase {
   }
 
   @AfterClass
-  private static void afterClass() throws Exception {
+  public static void afterClass() throws Exception {
     for (Http2SolrClient client : CLIENTS) {
       client.close();
     }