summaryrefslogtreecommitdiffstats
path: root/vendor/gix-features/tests
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-features/tests')
-rw-r--r--vendor/gix-features/tests/parallel/mod.rs2
-rw-r--r--vendor/gix-features/tests/pipe.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/vendor/gix-features/tests/parallel/mod.rs b/vendor/gix-features/tests/parallel/mod.rs
index b4b4236f8..cc824332d 100644
--- a/vendor/gix-features/tests/parallel/mod.rs
+++ b/vendor/gix-features/tests/parallel/mod.rs
@@ -45,7 +45,7 @@ fn in_parallel_with_mut_slice_in_chunks() {
&mut input,
None,
|_| 0usize,
- |item, acc| {
+ |item, acc, _threads_eft, _should_interrupt| {
*acc += *item;
*item += 1;
Ok::<_, ()>(())
diff --git a/vendor/gix-features/tests/pipe.rs b/vendor/gix-features/tests/pipe.rs
index 4815000bf..f2055ea9e 100644
--- a/vendor/gix-features/tests/pipe.rs
+++ b/vendor/gix-features/tests/pipe.rs
@@ -49,7 +49,7 @@ mod io {
writer.write_all(b"b\nc\n").expect("success");
drop(writer);
assert_eq!(
- reader.lines().flat_map(Result::ok).collect::<Vec<_>>(),
+ reader.lines().map_while(Result::ok).collect::<Vec<_>>(),
vec!["a", "b", "c"]
)
}