This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git

commit a9bcc9251e87a76c7d54ce1a6b0ddb1692c3955b
Author: Andy Grove <[email protected]>
AuthorDate: Sun Apr 18 09:30:16 2021 -0600

    Update paths to arrow and parquet test data
---
 arrow/src/util/test_util.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arrow/src/util/test_util.rs b/arrow/src/util/test_util.rs
index b32ff42..62e906d 100644
--- a/arrow/src/util/test_util.rs
+++ b/arrow/src/util/test_util.rs
@@ -76,7 +76,7 @@ pub fn get_temp_file(file_name: &str, content: &[u8]) -> 
fs::File {
 /// assert!(std::path::PathBuf::from(csvdata).exists());
 /// ```
 pub fn arrow_test_data() -> String {
-    match get_data_dir("ARROW_TEST_DATA", "../../testing/data") {
+    match get_data_dir("ARROW_TEST_DATA", "../testing/data") {
         Ok(pb) => pb.display().to_string(),
         Err(err) => panic!("failed to get arrow data dir: {}", err),
     }
@@ -100,7 +100,7 @@ pub fn arrow_test_data() -> String {
 pub fn parquet_test_data() -> String {
     match get_data_dir(
         "PARQUET_TEST_DATA",
-        "../../cpp/submodules/parquet-testing/data",
+        "../parquet-testing/data",
     ) {
         Ok(pb) => pb.display().to_string(),
         Err(err) => panic!("failed to get parquet data dir: {}", err),

Reply via email to