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

mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 33019d75eec9c9dd414b645a912a4fe5cd84f28a
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Mon Jan 10 09:59:26 2022 +0200

    Fix nightly build by optimizing the imports
    
    https://github.com/apache/avro/runs/4758414201?check_suite_focus=true
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
    (cherry picked from commit a29b8691c216f2954e063230ce957a27e30e1853)
---
 lang/rust/src/reader.rs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lang/rust/src/reader.rs b/lang/rust/src/reader.rs
index 5757044..4f6d311 100644
--- a/lang/rust/src/reader.rs
+++ b/lang/rust/src/reader.rs
@@ -304,8 +304,7 @@ pub fn from_avro_datum<R: Read>(
 #[cfg(test)]
 mod tests {
     use super::*;
-    use crate::from_value;
-    use crate::{types::Record, Reader};
+    use crate::{from_value, types::Record, Reader};
     use serde::Deserialize;
     use std::io::Cursor;
 

Reply via email to