Fix typos in test names
This commit is contained in:
parent
0caef90b1a
commit
67808fd9ae
1 changed files with 3 additions and 3 deletions
|
@ -539,7 +539,7 @@ mod tests {
|
||||||
|
|
||||||
/// Applying `next()` `n` times should be the same as `next_step()` for `n` steps.
|
/// Applying `next()` `n` times should be the same as `next_step()` for `n` steps.
|
||||||
#[test]
|
#[test]
|
||||||
fn linear_f32_next_equivalance() {
|
fn linear_f32_next_equivalence() {
|
||||||
let style = SmoothingStyle::Linear(100.0);
|
let style = SmoothingStyle::Linear(100.0);
|
||||||
|
|
||||||
let mut current = 0.4;
|
let mut current = 0.4;
|
||||||
|
@ -556,7 +556,7 @@ mod tests {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn logarithmic_f32_next_equivalance() {
|
fn logarithmic_f32_next_equivalence() {
|
||||||
let style = SmoothingStyle::Logarithmic(100.0);
|
let style = SmoothingStyle::Logarithmic(100.0);
|
||||||
|
|
||||||
let mut current = 0.4;
|
let mut current = 0.4;
|
||||||
|
@ -573,7 +573,7 @@ mod tests {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn exponential_f32_next_equivalance() {
|
fn exponential_f32_next_equivalence() {
|
||||||
let style = SmoothingStyle::Exponential(100.0);
|
let style = SmoothingStyle::Exponential(100.0);
|
||||||
|
|
||||||
let mut current = 0.4;
|
let mut current = 0.4;
|
||||||
|
|
Loading…
Add table
Reference in a new issue