Skip to content

Commit

Permalink
HSEARCH-3881 Rename a few tests whose name included a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Apr 16, 2020
1 parent d3e6e09 commit 12736a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -35,7 +35,7 @@
* {@link org.hibernate.search.engine.search.sort.dsl.SortFilterStep#filter(Function) filtering}
* that is not tested in {@link DistanceSearchSortBaseIT}.
*/
public class DistanceSearchSortTypeFilteringSpecificsIT {
public class DistanceSearchSortFilteringSpecificsIT {

private static final String INDEX_NAME = "IndexName";

Expand All @@ -51,7 +51,7 @@ public static void setup() {
.withIndex(
INDEX_NAME,
ctx -> indexMapping = new IndexMapping( ctx.getSchemaElement() ),
indexManager -> DistanceSearchSortTypeFilteringSpecificsIT.indexManager = indexManager
indexManager -> DistanceSearchSortFilteringSpecificsIT.indexManager = indexManager
)
.setup();
}
Expand Down
Expand Up @@ -41,7 +41,7 @@
* that is not tested in {@link FieldSearchSortBaseIT}.
*/
@RunWith(Parameterized.class)
public class FieldSearchSortTypeFilteringSpecificsIT<F> {
public class FieldSearchSortFilteringSpecificsIT<F> {

private static Stream<FieldTypeDescriptor<?>> supportedTypeDescriptors() {
return FieldTypeDescriptor.getAll().stream()
Expand Down Expand Up @@ -71,14 +71,14 @@ public static void setup() {
.withIndex(
INDEX_NAME,
ctx -> indexMapping = new IndexMapping( ctx.getSchemaElement() ),
indexManager -> FieldSearchSortTypeFilteringSpecificsIT.indexManager = indexManager
indexManager -> FieldSearchSortFilteringSpecificsIT.indexManager = indexManager
)
.setup();
}

private final FieldTypeDescriptor<F> fieldTypeDescriptor;

public FieldSearchSortTypeFilteringSpecificsIT(FieldTypeDescriptor<F> fieldTypeDescriptor) {
public FieldSearchSortFilteringSpecificsIT(FieldTypeDescriptor<F> fieldTypeDescriptor) {
this.fieldTypeDescriptor = fieldTypeDescriptor;
}

Expand Down

0 comments on commit 12736a7

Please sign in to comment.