@@ -27,7 +27,7 @@ use self::meta_build::{DeltaKind, InjectionPoint, Test, YearMonthDay};
27
27
use self :: which_temp:: { WhichTempDir , WhichTempDirectory } ;
28
28
29
29
// These tests pass `--preserve` and `--access=github` because that is the best
30
- // way to try to enusre that the tests complete as quickly as possible.
30
+ // way to try to ensure that the tests complete as quickly as possible.
31
31
32
32
pub const BASIC_TEST : Test = Test {
33
33
crate_name : "cbr_test_cli_basic" ,
@@ -46,7 +46,7 @@ pub const FIXED_TEST: Test = Test {
46
46
delta_kind : DeltaKind :: Fix ,
47
47
} ;
48
48
49
- // Ordnarily , I would put both of these tests into separate `#[test]` methods.
49
+ // Ordinarily , I would put both of these tests into separate `#[test]` methods.
50
50
// However, if you do that, then `cargo test` will run them in parallel, and you
51
51
// end up with `cargo-bisect-rustc` racing to install the toolchains it
52
52
// downloads.
@@ -83,7 +83,7 @@ where WhichTemp: WhichTempDirectory
83
83
println ! ( "Command output stderr for {}: \n ```\n {}\n ```" , test. crate_name, stderr) ;
84
84
85
85
// The most basic check: does the output actually tell us about the
86
- // "reressing " commit.
86
+ // "regressing " commit.
87
87
let needle = format ! ( "regression in {}" , test. expected_sha( ) ) ;
88
88
// println!("searching for {:?} in stdout: {:?} stderr: {:?}", needle, stdout, stderr);
89
89
assert ! ( stderr. contains( & needle) ) ;
0 commit comments