remove unfinished test

This commit is contained in:
Hokwang Choi 2022-06-07 12:49:38 -04:00
parent e9c1de389f
commit f25ebb2c64

View File

@ -131,12 +131,6 @@ fn linear_interpolation_several_keys() {
assert_eq!(spline.clamped_sample(11.), Some(4.));
}
#[test]
fn cubic_interpolation() {
let start = Key::new(0., 0., Interpolation::CatmullRom);
let end = Key::new(1., 10., Interpolation::default());
}
#[test]
fn several_interpolations_several_keys() {
let start = Key::new(0., 0., Interpolation::Step(0.5));