Skip to content

Commit 31bdcfe

Browse files
fix linter
1 parent 54225c0 commit 31bdcfe

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/EfCore.Ydb/test/EfCore.Ydb.FunctionalTests/TestUtilities/YdbTestStore.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ protected override async Task InitializeAsync(
6060
}
6161
}
6262

63-
public async Task ExecuteScript(string scriptPath)
63+
public async Task ExecuteScript(string scriptPathParam)
6464
{
65-
var script = await File.ReadAllTextAsync(scriptPath);
65+
var script = await File.ReadAllTextAsync(scriptPathParam);
6666
await ExecuteAsync(
6767
Connection, command =>
6868
{

src/Ydb.Sdk/tests/Dapper/DapperIntegrationTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ await connection.ExecuteAsync($@"
245245

246246
private record NullableFields
247247
{
248+
#pragma warning disable CollectionNeverQueried.Local
248249
public int? Id { get; init; }
249250
public bool? BoolColumn { get; init; }
250251
public long? LongColumn { get; init; }
@@ -260,6 +261,7 @@ private record NullableFields
260261
public string? TextColumn { get; init; }
261262
public byte[]? BytesColumn { get; init; }
262263
public DateTime? TimestampColumn { get; init; }
264+
#pragma warning restore CollectionNeverQueried.Local
263265
}
264266

265267
private record Episode

0 commit comments

Comments
 (0)