This is an automated email from the ASF dual-hosted git repository. mbrobbel pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push: new 866b17b97 chore(csharp/test): fix typo (#2946) 866b17b97 is described below commit 866b17b9752f6bcf57db70a598fc047c35468615 Author: Daijiro Fukuda <fuk...@clear-code.com> AuthorDate: Tue Jun 10 19:10:34 2025 +0900 chore(csharp/test): fix typo (#2946) Closes #2945 --- csharp/test/Drivers/Interop/FlightSql/DriverTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/test/Drivers/Interop/FlightSql/DriverTests.cs b/csharp/test/Drivers/Interop/FlightSql/DriverTests.cs index 46a0a7a9f..e9b64db91 100644 --- a/csharp/test/Drivers/Interop/FlightSql/DriverTests.cs +++ b/csharp/test/Drivers/Interop/FlightSql/DriverTests.cs @@ -43,7 +43,7 @@ namespace Apache.Arrow.Adbc.Tests.Drivers.Interop.FlightSql readonly Dictionary<string, AdbcConnection> _configuredConnections = new Dictionary<string, AdbcConnection>(); readonly ITestOutputHelper _outputHelper; - private List<string> GetPatterns(string? namePattern, bool caseSenstive) + private List<string> GetPatterns(string? namePattern, bool caseSensitive) { List<string> patterns = new List<string>(); @@ -52,7 +52,7 @@ namespace Apache.Arrow.Adbc.Tests.Drivers.Interop.FlightSql patterns.Add($"{GetPartialNameForPatternMatch(name)}%"); patterns.Add($"_{GetNameWithoutFirstChatacter(name)}"); - if (!caseSenstive) + if (!caseSensitive) { patterns.Add($"{GetPartialNameForPatternMatch(name).ToLower()}%"); patterns.Add($"{GetPartialNameForPatternMatch(name).ToUpper()}%");