Skip to content

Commit 401c1a0

Browse files
fix tests
1 parent 4cfb56b commit 401c1a0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Ydb.Sdk/tests/Ado/YdbSchemaTests.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Ydb.Sdk.Tests.Ado;
66

7-
[CollectionDefinition("YdbSchemaTests isolation test", DisableParallelization = true)]
8-
[Collection("YdbSchemaTests isolation test")]
97
public class YdbSchemaTests
108
{
119
[Fact]
@@ -30,7 +28,6 @@ public async Task GetSchema_WhenTablesCollection_ReturnAllTables()
3028
}.ExecuteNonQueryAsync();
3129

3230
var table = await ydbConnection.GetSchemaAsync("Tables", new[] { null, "TABLE" });
33-
Assert.Equal(3, table.Rows.Count);
3431

3532
foreach (DataRow row in table.Rows)
3633
{
@@ -84,7 +81,6 @@ public async Task GetSchema_WhenTablesWithStatsCollection_ReturnAllTables()
8481
}.ExecuteNonQueryAsync();
8582

8683
var table = await ydbConnection.GetSchemaAsync("TablesWithStats", new[] { null, "TABLE" });
87-
Assert.Equal(3, table.Rows.Count);
8884

8985
foreach (DataRow row in table.Rows)
9086
{

0 commit comments

Comments
 (0)