File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -942,11 +942,11 @@ bevy_reflect::tests::should_reflect_debug::Test {
942942 let output = to_string_pretty ( & ser, config) . unwrap ( ) ;
943943 let expected = r#"
944944{
945- "glam::f32::vec3::Vec3": {
946- "x" : 12.0,
947- "y" : 3.0,
948- "z" : -6.9,
949- } ,
945+ "glam::f32::vec3::Vec3": (
946+ x : 12.0,
947+ y : 3.0,
948+ z : -6.9,
949+ ) ,
950950}"# ;
951951
952952 assert_eq ! ( expected, format!( "\n {}" , output) ) ;
@@ -956,11 +956,11 @@ bevy_reflect::tests::should_reflect_debug::Test {
956956 fn vec3_deserialization ( ) {
957957 let data = r#"
958958{
959- "glam::f32::vec3::Vec3": {
960- "x" : 12.0,
961- "y" : 3.0,
962- "z" : -6.9,
963- } ,
959+ "glam::f32::vec3::Vec3": (
960+ x : 12.0,
961+ y : 3.0,
962+ z : -6.9,
963+ ) ,
964964}"# ;
965965
966966 let mut registry = TypeRegistry :: default ( ) ;
You can’t perform that action at this time.
0 commit comments