Turns off test cases for two-client tests

This commit is contained in:
benbierens 2023-05-05 08:35:13 +02:00
parent 3aba6d5082
commit 3c9cb9b7da
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
1 changed files with 3 additions and 11 deletions

View File

@ -7,23 +7,15 @@ namespace Tests.BasicTests
[TestFixture]
public class TwoClientTests : DistTest
{
[TestCase(1)]
[TestCase(2)]
[TestCase(3)]
[TestCase(4)]
[TestCase(5)]
[TestCase(6)]
[TestCase(7)]
[TestCase(8)]
[TestCase(9)]
public void TwoClientsOnePodTest(int size)
[Test]
public void TwoClientsOnePodTest()
{
var group = SetupCodexNodes(2);
var primary = group[0];
var secondary = group[1];
PerformTwoClientTest(primary, secondary, size.MB());
PerformTwoClientTest(primary, secondary);
}
[Test]