chore: run linter and fix formatting
This commit is contained in:
parent
3b3a7ce15e
commit
73921db5f9
7 changed files with 8 additions and 6 deletions
|
|
@ -11,4 +11,4 @@ paste = "1.0.12"
|
|||
|
||||
[dev-dependencies]
|
||||
argus-core = { path = "../argus-core", features = ["arbitrary"] }
|
||||
proptest = "1.1.0"
|
||||
proptest = "1.1"
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@ fn compute_timed_eventually(signal: Signal<bool>, a: Duration, b: Option<Duratio
|
|||
)
|
||||
}
|
||||
}
|
||||
Signal::try_from_iter(ret_vals.into_iter())
|
||||
Signal::try_from_iter(ret_vals)
|
||||
}
|
||||
None => {
|
||||
// Shift the signal to the left by `a` and then run the untimed eventually.
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ fn compute_timed_eventually(signal: Signal<f64>, a: Duration, b: Option<Duration
|
|||
)
|
||||
}
|
||||
}
|
||||
Signal::try_from_iter(ret_vals.into_iter())
|
||||
Signal::try_from_iter(ret_vals)
|
||||
}
|
||||
None => {
|
||||
// Shift the signal to the left by `a` and then run the untimed eventually.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue