diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 03:57:31 +0000 |
commit | dc0db358abe19481e475e10c32149b53370f1a1c (patch) | |
tree | ab8ce99c4b255ce46f99ef402c27916055b899ee /vendor/gix-features/tests | |
parent | Releasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff) | |
download | rustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip |
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/gix-features/tests')
-rw-r--r-- | vendor/gix-features/tests/parallel/mod.rs | 2 | ||||
-rw-r--r-- | vendor/gix-features/tests/pipe.rs | 2 |
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"] ) } |