From a8c12d818bb12c91a3caca00f8e72f91e38fe8e6 Mon Sep 17 00:00:00 2001 From: Cameron Hart Date: Thu, 4 Mar 2021 23:39:55 +1300 Subject: [PATCH] Missed a deprecated identity call. --- crates/bevy_core/src/bytes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_core/src/bytes.rs b/crates/bevy_core/src/bytes.rs index efcbdf26fb40e..495cc64c41ca3 100644 --- a/crates/bevy_core/src/bytes.rs +++ b/crates/bevy_core/src/bytes.rs @@ -231,6 +231,6 @@ mod tests { #[test] fn test_mat4_round_trip() { - test_round_trip(Mat4::identity()); + test_round_trip(Mat4::IDENTITY); } }