@@ -922,7 +922,7 @@ mod roundtrip_tests {
922922 use core:: panic;
923923 use datafusion:: {
924924 arrow:: datatypes:: { DataType , Field , Schema } ,
925- datafusion_storage :: {
925+ datafusion_data_access :: {
926926 self ,
927927 object_store:: {
928928 local:: LocalFileSystem , FileMetaStream , ListEntryStream , ObjectReader ,
@@ -949,7 +949,7 @@ mod roundtrip_tests {
949949 async fn list_file (
950950 & self ,
951951 _prefix : & str ,
952- ) -> datafusion_storage :: Result < FileMetaStream > {
952+ ) -> datafusion_data_access :: Result < FileMetaStream > {
953953 Err ( io:: Error :: new (
954954 io:: ErrorKind :: Unsupported ,
955955 "this is only a test object store" . to_string ( ) ,
@@ -960,7 +960,7 @@ mod roundtrip_tests {
960960 & self ,
961961 _prefix : & str ,
962962 _delimiter : Option < String > ,
963- ) -> datafusion_storage :: Result < ListEntryStream > {
963+ ) -> datafusion_data_access :: Result < ListEntryStream > {
964964 Err ( io:: Error :: new (
965965 io:: ErrorKind :: Unsupported ,
966966 "this is only a test object store" . to_string ( ) ,
@@ -970,7 +970,7 @@ mod roundtrip_tests {
970970 fn file_reader (
971971 & self ,
972972 _file : SizedFile ,
973- ) -> datafusion_storage :: Result < Arc < dyn ObjectReader > > {
973+ ) -> datafusion_data_access :: Result < Arc < dyn ObjectReader > > {
974974 Err ( io:: Error :: new (
975975 io:: ErrorKind :: Unsupported ,
976976 "this is only a test object store" . to_string ( ) ,
0 commit comments