Skip to content

Commit

Permalink
[Backport 2.x] Fixing neural search name check for default use case i…
Browse files Browse the repository at this point in the history
…nteg test (#609)

fixing neural search name

Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Mar 22, 2024
1 parent e442a15 commit e592b17
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,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 e592b17

Please sign in to comment.