We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cccc9c commit 55bdbb0Copy full SHA for 55bdbb0
src/Ydb.Sdk/test/Ydb.Sdk.Ado.Tests/YdbParameterTests.cs
@@ -695,7 +695,7 @@ public async Task YdbParameter_SetValue_ArrayOrList_ConvertsToYdbList(YdbDbType
695
}.ExecuteScalarAsync();
696
697
Assert.Equal(3ul, count);
698
- Assert.Equal(list.Count, await new YdbCommand(ydbConnection)
+ Assert.Equal((ulong)list.Count, await new YdbCommand(ydbConnection)
699
{ CommandText = $"SELECT COUNT(*) FROM `{testTable}`" }.ExecuteScalarAsync());
700
701
await new YdbCommand(ydbConnection) { CommandText = $"DROP TABLE `{testTable}`" }.ExecuteNonQueryAsync();
0 commit comments