CurtHagenlocher commented on code in PR #3153: URL: https://github.com/apache/arrow-adbc/pull/3153#discussion_r2205501660
########## csharp/test/Drivers/Databricks/E2E/DatabricksTestConfiguration.cs: ########## @@ -45,5 +45,8 @@ public class DatabricksTestConfiguration : SparkTestConfiguration [JsonPropertyName("traceStateEnabled"), JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)] public string TraceStateEnabled { get; set; } = string.Empty; + + [JsonPropertyName("isCITesting"), JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)] + public bool isCITesting { get; set; } = false; Review Comment: ```suggestion public bool IsCITesting { get; set; } = false; ``` nit: follow C# convention of UpperCase property names. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org