Skip to content

Commit

Permalink
Fixing neural search name check for default use case integ test (#607)
Browse files Browse the repository at this point in the history
fixing neural search name

Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis authored Mar 22, 2024
1 parent 8e962bf commit 8820d89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ public void testDefaultSemanticSearchUseCaseWithFailureExpected() throws Excepti

// Distribution build contains all plugins, checking if plugins are part of the integration test cluster
List<String> plugins = catPlugins();
if (plugins.contains("opensearch-knn") && plugins.contains("neural-search")) {
if (plugins.contains("opensearch-knn") && plugins.contains("opensearch-neural-search")) {
getAndAssertWorkflowStatus(client(), workflowId, State.PROVISIONING, ProvisioningProgress.IN_PROGRESS);
} else {
// expecting a failure since there is no neural-search plugin in cluster to provide text-embedding processor
Expand Down

0 comments on commit 8820d89

Please sign in to comment.