Skip to content

Commit

Permalink
fix rust transform3d test
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Jul 15, 2024
1 parent f5418ee commit fe140e2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions crates/store/re_types/tests/transform3d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ fn roundtrip() {
from_parent: false,
},
)),
mat3x3: Some(Vec::new()),
translation: Some(Vec::new()),
mat3x3: None,
translation: None,
axis_length: None,
}, //
Transform3D {
Expand All @@ -35,7 +35,7 @@ fn roundtrip() {
from_parent: true,
},
)),
mat3x3: Some(Vec::new()),
mat3x3: None,
translation: Some(vec![Vec3D([1.0, 2.0, 3.0]).into()]),
axis_length: None,
}, //
Expand All @@ -51,7 +51,7 @@ fn roundtrip() {
from_parent: false,
},
)),
mat3x3: Some(Vec::new()),
mat3x3: None,
translation: Some(vec![Vec3D([1.0, 2.0, 3.0]).into()]),
axis_length: None,
}, //
Expand All @@ -67,7 +67,7 @@ fn roundtrip() {
from_parent: true,
},
)),
mat3x3: Some(Vec::new()),
mat3x3: None,
translation: Some(vec![Vec3D([1.0, 2.0, 3.0]).into()]),
axis_length: None,
}, //
Expand All @@ -80,7 +80,7 @@ fn roundtrip() {
from_parent: true,
},
)),
mat3x3: Some(Vec::new()),
mat3x3: None,
translation: Some(vec![Vec3D([1.0, 2.0, 3.0]).into()]),
axis_length: None,
}, //
Expand All @@ -96,7 +96,7 @@ fn roundtrip() {
mat3x3: Some(vec![
Mat3x3([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0]).into()
]),
translation: Some(Vec::new()),
translation: None,
axis_length: None,
}, //
];
Expand Down

0 comments on commit fe140e2

Please sign in to comment.