alamb commented on code in PR #3427:
URL: https://github.com/apache/arrow-rs/pull/3427#discussion_r1060041049


##########
arrow-integration-testing/tests/ipc_reader.rs:
##########
@@ -37,51 +39,42 @@ fn read_generated_files_014() {
         "generated_decimal",
     ];
     paths.iter().for_each(|path| {
-        let file = File::open(format!(
-            "{}/arrow-ipc-stream/integration/{}/{}.arrow_file",
-            testdata, version, path
-        ))
-        .unwrap();
-
-        let mut reader = FileReader::try_new(file, None).unwrap();
+        verify_arrow_file(&testdata, version, path);
+        verify_arrow_stream(&testdata, version, path);
+    });
+}
 
-        // read expected JSON output
-        let arrow_json = read_gzip_json(version, path);
-        assert!(arrow_json.equals_reader(&mut reader).unwrap());
+#[test]
+fn read_0_1_7() {
+    let testdata = arrow_test_data();
+    let version = "0.17.1";
+    let paths = vec!["generated_union"];
+    paths.iter().for_each(|path| {

Review Comment:
   This used to be (partially) covered in `arrow/tests/ipc.rs`



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to