File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
ingest-geoip/src/test/java/org/opensearch/ingest/geoip
ingest-user-agent/src/test/java/org/opensearch/ingest/useragent Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -128,9 +128,9 @@ public void testAllowListNotSpecified() throws IOException {
128
128
}
129
129
130
130
public void testSettingsRegistration () {
131
- final IngestGeoIpModulePlugin plugin = new IngestGeoIpModulePlugin ();
131
+ final IngestGeoIpPlugin plugin = new IngestGeoIpPlugin ();
132
132
final List <Setting <?>> settings = plugin .getSettings ();
133
- assertTrue (settings .contains (IngestGeoIpModulePlugin .PROCESSORS_ALLOWLIST_SETTING ));
133
+ assertTrue (settings .contains (IngestGeoIpPlugin .PROCESSORS_ALLOWLIST_SETTING ));
134
134
}
135
135
136
136
private void runAllowListTest (List <String > allowList ) throws IOException {
Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ public void testAllowListNotSpecified() throws IOException {
89
89
}
90
90
91
91
public void testSettingsRegistration () {
92
- final IngestUserAgentModulePlugin plugin = new IngestUserAgentModulePlugin ();
92
+ final IngestUserAgentPlugin plugin = new IngestUserAgentPlugin ();
93
93
final List <Setting <?>> settings = plugin .getSettings ();
94
- assertTrue (settings .contains (IngestUserAgentModulePlugin .PROCESSORS_ALLOWLIST_SETTING ));
94
+ assertTrue (settings .contains (IngestUserAgentPlugin .PROCESSORS_ALLOWLIST_SETTING ));
95
95
}
96
96
97
97
private void runAllowListTest (List <String > allowList ) throws IOException {
You can’t perform that action at this time.
0 commit comments