Skip to content

Commit 9f33249

Browse files
committed
rename
1 parent 2745595 commit 9f33249

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/src/test/java/org/elasticsearch/index/mapper/RuntimeFieldTests.java renamed to server/src/test/java/org/elasticsearch/index/mapper/RuntimeFieldSourceProviderOptimizationTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
import static org.elasticsearch.xcontent.XContentFactory.jsonBuilder;
3232
import static org.hamcrest.Matchers.equalTo;
3333

34-
public class RuntimeFieldTests extends ESSingleNodeTestCase {
34+
public class RuntimeFieldSourceProviderOptimizationTests extends ESSingleNodeTestCase {
3535

36-
public void testRuntimeSourceOnlyField_sourceProviderOptimization() throws IOException {
36+
public void testWithSourceProviderOptimization() throws IOException {
3737
var mapping = jsonBuilder().startObject().startObject("runtime").startObject("field");
3838
mapping.field("type", "long");
3939
mapping.endObject().endObject().endObject();
@@ -84,7 +84,7 @@ public void testRuntimeSourceOnlyField_sourceProviderOptimization() throws IOExc
8484
}
8585
}
8686

87-
public void testRuntimeSourceOnlyField_noSourceProviderOptimization() throws IOException {
87+
public void testWithoutSourceProviderOptimization() throws IOException {
8888
var mapping = jsonBuilder().startObject().startObject("runtime").startObject("field");
8989
mapping.field("type", "long");
9090
mapping.endObject().endObject().endObject();

0 commit comments

Comments
 (0)