Skip to content

Commit

Permalink
Fix CI test for glam serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGVSV committed Jun 12, 2022
1 parent 5e6b188 commit 80c8db4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/bevy_reflect/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,9 @@ bevy_reflect::tests::should_reflect_debug::Test {

let serializer = ReflectSerializer::new(&v, &registry);

let output = ron::ser::to_string_pretty(&serializer, Default::default()).unwrap();
let config = PrettyConfig::default().new_line(String::from("\n"));

let output = ron::ser::to_string_pretty(&serializer, config).unwrap();
let expected = r#"
{
"type": "glam::vec3::Vec3",
Expand Down

0 comments on commit 80c8db4

Please sign in to comment.