Skip to content

Commit 4887660

Browse files
committed
the backport of #2872 introduced an integration tests that behaves differently on 2.x than on 5.x added a skipversion for now
1 parent 3474132 commit 4887660

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Tests/Reproduce/GithubIssue2871.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ public class GithubIssue2871 : IClusterFixture<WritableCluster>
1616

1717
public GithubIssue2871(WritableCluster cluster) => _cluster = cluster;
1818

19-
[I]
19+
[I][SkipVersion("<5.0.0", "this fails the whole request with 400 in 2.x")]
2020
public void IsValidFalseAndDeserializedErrorsWhenMultiGetDocHasErrors()
2121
{
22-
var index1 = "index1";
23-
var index2 = "index2";
24-
var alias = "my_alias";
22+
var index1 = "index1-issue2871";
23+
var index2 = "index2-issue2871";
24+
var alias = "my_alias-issue2871";
2525
var client = _cluster.Client;
2626

2727
client.CreateIndex(index1, c=> c

0 commit comments

Comments
 (0)