You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2021/03/09 07:33:20 UTC

[lucene-solr] branch master updated: LUCENE-8626: correct test suite name.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8969225  LUCENE-8626: correct test suite name.
8969225 is described below

commit 8969225bd2307ef46b9169d69b5446e361cd7740
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Tue Mar 9 08:33:05 2021 +0100

    LUCENE-8626: correct test suite name.
---
 .../{StressRamUsageEstimator.java => TestStressRamUsageEstimator.java}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/core/src/test/org/apache/lucene/util/StressRamUsageEstimator.java b/lucene/core/src/test/org/apache/lucene/util/TestStressRamUsageEstimator.java
similarity index 97%
rename from lucene/core/src/test/org/apache/lucene/util/StressRamUsageEstimator.java
rename to lucene/core/src/test/org/apache/lucene/util/TestStressRamUsageEstimator.java
index cb874e3..759eeef 100644
--- a/lucene/core/src/test/org/apache/lucene/util/StressRamUsageEstimator.java
+++ b/lucene/core/src/test/org/apache/lucene/util/TestStressRamUsageEstimator.java
@@ -19,7 +19,7 @@ package org.apache.lucene.util;
 /**
  * Estimates how {@link RamUsageEstimator} estimates physical memory consumption of Java objects.
  */
-public class StressRamUsageEstimator extends LuceneTestCase {
+public class TestStressRamUsageEstimator extends LuceneTestCase {
   static class Entry {
     Object o;
     Entry next;