Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aecsocket committed Sep 21, 2024
1 parent 03bb543 commit 43ba752
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_reflect/src/impls/glam.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ mod tests {
let output = to_string_pretty(&ser, config).unwrap();
let expected = r#"
{
"glam::EulerRot": "YXZ",
"glam::EulerRot": YXZ,
}"#;

assert_eq!(expected, format!("\n{output}"));
Expand All @@ -390,7 +390,7 @@ mod tests {
fn euler_rot_deserialization() {
let data = r#"
{
"glam::EulerRot": "XZY",
"glam::EulerRot": XZY,
}"#;

let mut registry = TypeRegistry::default();
Expand Down

0 comments on commit 43ba752

Please sign in to comment.