From 4360ea94747cff9262a11cc4759041b17fdd724f Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Tue, 9 Jul 2024 23:07:52 -0400 Subject: [PATCH] Try C# fix --- csharp/test/Apache.Arrow.Adbc.Tests/AdbcTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/test/Apache.Arrow.Adbc.Tests/AdbcTests.cs b/csharp/test/Apache.Arrow.Adbc.Tests/AdbcTests.cs index c8d0fe0c20..3b55387b1d 100644 --- a/csharp/test/Apache.Arrow.Adbc.Tests/AdbcTests.cs +++ b/csharp/test/Apache.Arrow.Adbc.Tests/AdbcTests.cs @@ -207,7 +207,7 @@ private string GetPathForAdbcH() { // find the adbc.h file from the repo - string path = Path.Combine(new string[] { "..", "..", "..", "..", "..", "c", "include", "arrow-adbc" }); + string path = Path.Combine(new string[] { "..", "..", "..", "..", "..", "c", "include", "arrow-adbc", "adbc.h"}); Assert.True(File.Exists(path));