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 {
942
942
let output = to_string_pretty ( & ser, config) . unwrap ( ) ;
943
943
let expected = r#"
944
944
{
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
+ ) ,
950
950
}"# ;
951
951
952
952
assert_eq ! ( expected, format!( "\n {}" , output) ) ;
@@ -956,11 +956,11 @@ bevy_reflect::tests::should_reflect_debug::Test {
956
956
fn vec3_deserialization ( ) {
957
957
let data = r#"
958
958
{
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
+ ) ,
964
964
}"# ;
965
965
966
966
let mut registry = TypeRegistry :: default ( ) ;
You can’t perform that action at this time.
0 commit comments