diff --git a/protobuf/src/reflect/field/mod.rs b/protobuf/src/reflect/field/mod.rs index 190833dd0..3da38cad0 100644 --- a/protobuf/src/reflect/field/mod.rs +++ b/protobuf/src/reflect/field/mod.rs @@ -567,7 +567,8 @@ mod test { use crate::descriptor::DescriptorProto; use crate::reflect::ReflectValueBox; - use crate::well_known_types::struct_::{Struct, Value}; + use crate::well_known_types::struct_::Struct; + use crate::well_known_types::struct_::Value; use crate::MessageFull; #[test] diff --git a/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear.rs b/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear.rs index 1b4239ace..2e0affafa 100644 --- a/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear.rs +++ b/test-crates/protobuf-codegen-protoc-test/src/common/v2/test_reflect_clear.rs @@ -1,6 +1,7 @@ use std::collections::HashMap; -use protobuf::{reflect::ReflectValueBox, MessageFull}; +use protobuf::reflect::ReflectValueBox; +use protobuf::MessageFull; use super::test_reflect_clear_pb::*;