fix unit test expected times

This commit is contained in:
Quaternions 2023-11-28 19:25:02 -08:00
parent 49d799eb60
commit 9d266e7be1

View File

@ -1712,7 +1712,7 @@ fn test_collision_parabola_east(){
Planar64Vec3::int(100,-1,0), Planar64Vec3::int(100,-1,0),
Planar64Vec3::int(0,-1,0), Planar64Vec3::int(0,-1,0),
Time::ZERO Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(2))); )).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
} }
#[test] #[test]
fn test_collision_parabola_south(){ fn test_collision_parabola_south(){
@ -1721,7 +1721,7 @@ fn test_collision_parabola_south(){
Planar64Vec3::int(0,-1,100), Planar64Vec3::int(0,-1,100),
Planar64Vec3::int(0,-1,0), Planar64Vec3::int(0,-1,0),
Time::ZERO Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(2))); )).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
} }
#[test] #[test]
fn test_collision_parabola_west(){ fn test_collision_parabola_west(){
@ -1730,7 +1730,7 @@ fn test_collision_parabola_west(){
Planar64Vec3::int(-100,-1,0), Planar64Vec3::int(-100,-1,0),
Planar64Vec3::int(0,-1,0), Planar64Vec3::int(0,-1,0),
Time::ZERO Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(2))); )).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
} }
#[test] #[test]
fn test_collision_parabola_north(){ fn test_collision_parabola_north(){
@ -1739,7 +1739,7 @@ fn test_collision_parabola_north(){
Planar64Vec3::int(0,-1,-100), Planar64Vec3::int(0,-1,-100),
Planar64Vec3::int(0,-1,0), Planar64Vec3::int(0,-1,0),
Time::ZERO Time::ZERO
)).body(Time::from_secs(-1)),Some(Time::from_secs(2))); )).body(Time::from_secs(-1)),Some(Time::from_secs(0)));
} }
#[test] #[test]
fn test_collision_oblique(){ fn test_collision_oblique(){