Skip to content

Commit b9969ae

Browse files
Unmute CsvProcessor (#4726) (#4749)
Relates: #4718. Unmute CsvProcessot tests for 7.8.0 now that empty_value is fixed. Co-authored-by: Russ Cam <[email protected]>
1 parent 78c1a76 commit b9969ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/Tests/Ingest/ProcessorAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public class Append : ProcessorAssertion
7575
public override string Key => "append";
7676
}
7777

78-
[BlockedByIssue("https://github.com/elastic/elasticsearch/issues/55643")]
78+
[SkipVersion("<7.8.0", "Empty Value bug in versions less than Elasticsearch 7.8.0")]
7979
public class Csv : ProcessorAssertion
8080
{
8181
public override Func<ProcessorsDescriptor, IPromise<IList<IProcessor>>> Fluent => d => d

tests/Tests/Ingest/PutPipeline/PutPipelineApiTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
33
// See the LICENSE file in the project root for more information
44

5-
using System;
5+
using System;
6+
using Elastic.Elasticsearch.Xunit.XunitPlumbing;
67
using Elasticsearch.Net;
78
using FluentAssertions;
89
using Nest;
910
using Tests.Configuration;
1011
using Tests.Core.Extensions;
1112
using Tests.Core.ManagedElasticsearch.Clusters;
12-
using Tests.Core.Xunit;
1313
using Tests.Domain;
1414
using Tests.Framework.EndpointTests;
1515
using Tests.Framework.EndpointTests.TestState;
1616

1717
namespace Tests.Ingest.PutPipeline
1818
{
19-
[BlockedByIssue("https://github.com/elastic/elasticsearch/issues/55643")]
19+
[SkipVersion("<7.8.0", "Empty Value bug in versions less than Elasticsearch 7.8.0")]
2020
public class PutPipelineApiTests
2121
: ApiIntegrationTestBase<XPackCluster, PutPipelineResponse, IPutPipelineRequest, PutPipelineDescriptor, PutPipelineRequest>
2222
{

0 commit comments

Comments
 (0)