-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
temporarily disable test during rc1 because the delete response chang…
…ed for documents with not existing index elastic/elasticsearch#27070
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ protected override void IntegrationSetup(IElasticClient client, CallUniqueValues | |
) | ||
) | ||
.Actions(a => a | ||
.Email("reminder_email", e => e | ||
.Email("reminder_email", e => e | ||
.To("[email protected]") | ||
.Subject("Something's strange in the neighbourhood") | ||
.Body(b => b | ||
|
@@ -76,6 +76,7 @@ protected override void ExpectResponse(IDeleteWatchResponse response) | |
} | ||
} | ||
|
||
[SkipVersion("6.0.0-rc1", "Delete document response on non existing index has changed")] | ||
public class DeleteNonExistentWatchApiTests : ApiIntegrationTestBase<XPackCluster, IDeleteWatchResponse, IDeleteWatchRequest, DeleteWatchDescriptor, DeleteWatchRequest> | ||
{ | ||
public DeleteNonExistentWatchApiTests(XPackCluster cluster, EndpointUsage usage) : base(cluster, usage) { } | ||
|
@@ -101,8 +102,7 @@ protected override LazyResponses ClientUsage() => Calls( | |
|
||
protected override Func<DeleteWatchDescriptor, IDeleteWatchRequest> Fluent => p => p; | ||
|
||
protected override DeleteWatchRequest Initializer => | ||
new DeleteWatchRequest(CallIsolatedValue); | ||
protected override DeleteWatchRequest Initializer => new DeleteWatchRequest(CallIsolatedValue); | ||
|
||
protected override void ExpectResponse(IDeleteWatchResponse response) | ||
{ | ||
|