We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7d7368 commit 63b561cCopy full SHA for 63b561c
crates/bevy_reflect/src/lib.rs
@@ -942,11 +942,11 @@ bevy_reflect::tests::should_reflect_debug::Test {
942
let output = to_string_pretty(&ser, config).unwrap();
943
let expected = r#"
944
{
945
- "glam::f32::vec3::Vec3": {
946
- "x": 12.0,
947
- "y": 3.0,
948
- "z": -6.9,
949
- },
+ "glam::f32::vec3::Vec3": (
+ x: 12.0,
+ y: 3.0,
+ z: -6.9,
+ ),
950
}"#;
951
952
assert_eq!(expected, format!("\n{}", output));
@@ -956,11 +956,11 @@ bevy_reflect::tests::should_reflect_debug::Test {
956
fn vec3_deserialization() {
957
let data = r#"
958
959
960
961
962
963
964
965
966
let mut registry = TypeRegistry::default();
0 commit comments