Copilot commented on code in PR #5565: URL: https://github.com/apache/ignite-3/pull/5565#discussion_r2026931669
########## modules/platforms/dotnet/Apache.Ignite.Tests/Table/KeyColumnOrderTests.cs: ########## @@ -26,8 +26,7 @@ namespace Apache.Ignite.Tests.Table; /// </summary> public class KeyColumnOrderTests : IgniteTestsBase { - // TODO https://issues.apache.org/jira/browse/IGNITE-24258: Revert changing names to uppercase. - private static readonly string[] Tables = { "TEST1", "TEST2", "TEST3", "TEST4" }; + private static readonly string[] Tables = ["TEST1", "TEST2", "TEST3", "TEST4"]; Review Comment: The array initialization using square bracket syntax is not valid C#. Use the syntax 'new[] { "TEST1", "TEST2", "TEST3", "TEST4" }' instead. ```suggestion private static readonly string[] Tables = new[] { "TEST1", "TEST2", "TEST3", "TEST4" }; ``` -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org