We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a5897 commit 922cfe5Copy full SHA for 922cfe5
crates/cargo-test-support/src/lib.rs
@@ -747,17 +747,6 @@ impl Execs {
747
self
748
}
749
750
- /// Verifies that stdout contains the given contiguous lines somewhere in
751
- /// its output, and should be repeated `number` times.
752
- ///
753
- /// See [`compare`] for supported patterns.
754
- #[deprecated(note = "replaced with `Execs::with_stdout_data(expected)`")]
755
- pub fn with_stdout_contains_n<S: ToString>(&mut self, expected: S, number: usize) -> &mut Self {
756
- self.expect_stdout_contains_n
757
- .push((expected.to_string(), number));
758
- self
759
- }
760
-
761
/// Verifies that stdout does not contain the given contiguous lines.
762
///
763
/// See [`compare`] for supported patterns.
0 commit comments