Skip to content

Commit 68af3b6

Browse files
fix
1 parent 5819871 commit 68af3b6

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

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

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

77
namespace Ydb.Sdk.Tests.Ado;
88

9-
[CollectionDefinition("YdbSchemaTests isolation test", DisableParallelization = true)]
10-
[Collection("YdbSchemaTests isolation test")]
119
public class YdbSchemaTests : YdbAdoNetFixture
1210
{
1311
private readonly string _table1;
@@ -47,10 +45,6 @@ public async Task GetSchema_WhenTablesCollection_ReturnAllTables()
4745
Assert.Equal(_table2, singleTable2.Rows[0]["table_name"].ToString());
4846
Assert.Equal("TABLE", singleTable2.Rows[0]["table_type"].ToString());
4947

50-
var userTables = await ydbConnection.GetSchemaAsync("Tables", new[] { null, "TABLE" });
51-
Assert.Equal(3, userTables.Rows.Count);
52-
53-
// not found case
5448
await Assert.ThrowsAsync<YdbException>(
5549
async () => await ydbConnection.GetSchemaAsync("Tables", new[] { "not_found", null })
5650
);

0 commit comments

Comments
 (0)