Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <cwperx@amazon.com>
  • Loading branch information
cwperks committed Jan 28, 2025
1 parent 5e48de5 commit cb2da89
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import static org.opensearch.geospatial.ip2geo.jobscheduler.Datasource.IP2GEO_DATA_INDEX_NAME_PREFIX;
import static org.opensearch.geospatial.ip2geo.jobscheduler.DatasourceExtension.JOB_INDEX_NAME;

import java.util.Collection;
import java.util.HashSet;
Expand Down Expand Up @@ -74,7 +75,7 @@ public class GeospatialPluginTests extends OpenSearchTestCase {
new RestDeleteDatasourceHandler()
);

private final Set<String> SUPPORTED_SYSTEM_INDEX_PATTERN = Set.of(IP2GEO_DATA_INDEX_NAME_PREFIX);
private final Set<String> SUPPORTED_SYSTEM_INDEX_PATTERN = Set.of(IP2GEO_DATA_INDEX_NAME_PREFIX, JOB_INDEX_NAME);

private final Set<Class> SUPPORTED_COMPONENTS = Set.of(
UploadStats.class,
Expand Down

0 comments on commit cb2da89

Please sign in to comment.