Skip to content

Commit 4cfb56b

Browse files
fix linter
1 parent e29b3d6 commit 4cfb56b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Ydb.Sdk/src/Services/Operations/OperationExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using System.Diagnostics.CodeAnalysis;
21
using Google.Protobuf;
32
using Ydb.Sdk.Client;
43

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System.Data;
12
using Xunit;
23
using Ydb.Sdk.Ado;
34

@@ -31,7 +32,7 @@ public async Task GetSchema_WhenTablesCollection_ReturnAllTables()
3132
var table = await ydbConnection.GetSchemaAsync("Tables", new[] { null, "TABLE" });
3233
Assert.Equal(3, table.Rows.Count);
3334

34-
foreach (System.Data.DataRow row in table.Rows)
35+
foreach (DataRow row in table.Rows)
3536
{
3637
tableNames.Remove(row["table_name"].ToString()!);
3738
}
@@ -85,7 +86,7 @@ public async Task GetSchema_WhenTablesWithStatsCollection_ReturnAllTables()
8586
var table = await ydbConnection.GetSchemaAsync("TablesWithStats", new[] { null, "TABLE" });
8687
Assert.Equal(3, table.Rows.Count);
8788

88-
foreach (System.Data.DataRow row in table.Rows)
89+
foreach (DataRow row in table.Rows)
8990
{
9091
tableNames.Remove(row["table_name"].ToString()!);
9192

0 commit comments

Comments
 (0)