@@ -27,7 +27,7 @@ use self::meta_build::{DeltaKind, InjectionPoint, Test, YearMonthDay};
2727use self :: which_temp:: { WhichTempDir , WhichTempDirectory } ;
2828
2929// 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.
3131
3232pub const BASIC_TEST : Test = Test {
3333 crate_name : "cbr_test_cli_basic" ,
@@ -46,7 +46,7 @@ pub const FIXED_TEST: Test = Test {
4646 delta_kind : DeltaKind :: Fix ,
4747} ;
4848
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.
5050// However, if you do that, then `cargo test` will run them in parallel, and you
5151// end up with `cargo-bisect-rustc` racing to install the toolchains it
5252// downloads.
@@ -83,7 +83,7 @@ where WhichTemp: WhichTempDirectory
8383 println ! ( "Command output stderr for {}: \n ```\n {}\n ```" , test. crate_name, stderr) ;
8484
8585 // The most basic check: does the output actually tell us about the
86- // "reressing " commit.
86+ // "regressing " commit.
8787 let needle = format ! ( "regression in {}" , test. expected_sha( ) ) ;
8888 // println!("searching for {:?} in stdout: {:?} stderr: {:?}", needle, stdout, stderr);
8989 assert ! ( stderr. contains( & needle) ) ;
0 commit comments