Skip to content

Commit 42b7c32

Browse files
committed
fix test fallout
1 parent e154687 commit 42b7c32

9 files changed

+9
-9
lines changed

src/test/compile-fail/changing-crates.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
extern crate a;
1919
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
20-
//~| NOTE: perhaps this crate needs to be recompiled
20+
//~| NOTE: perhaps that crate needs to be recompiled
2121
//~| NOTE: crate `a` path #1:
2222
//~| NOTE: crate `b` path #1:
2323

src/test/compile-fail/svh-change-lit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
extern crate a;
1919
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
20-
//~| NOTE: perhaps this crate needs to be recompiled
20+
//~| NOTE: perhaps that crate needs to be recompiled
2121
//~| NOTE: crate `a` path #1:
2222
//~| NOTE: crate `b` path #1:
2323

src/test/compile-fail/svh-change-significant-cfg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
extern crate a;
1919
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
20-
//~| NOTE: perhaps this crate needs to be recompiled
20+
//~| NOTE: perhaps that crate needs to be recompiled
2121
//~| NOTE: crate `a` path #1:
2222
//~| NOTE: crate `b` path #1:
2323

src/test/compile-fail/svh-change-trait-bound.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
extern crate a;
1919
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
20-
//~| NOTE: perhaps this crate needs to be recompiled
20+
//~| NOTE: perhaps that crate needs to be recompiled
2121
//~| NOTE: crate `a` path #1:
2222
//~| NOTE: crate `b` path #1:
2323

src/test/compile-fail/svh-change-type-arg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
extern crate a;
1919
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
20-
//~| NOTE: perhaps this crate needs to be recompiled
20+
//~| NOTE: perhaps that crate needs to be recompiled
2121
//~| NOTE: crate `a` path #1:
2222
//~| NOTE: crate `b` path #1:
2323

src/test/compile-fail/svh-change-type-ret.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
extern crate a;
1919
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
20-
//~| NOTE: perhaps this crate needs to be recompiled
20+
//~| NOTE: perhaps that crate needs to be recompiled
2121
//~| NOTE: crate `a` path #1:
2222
//~| NOTE: crate `b` path #1:
2323

src/test/compile-fail/svh-change-type-static.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
extern crate a;
1919
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
20-
//~| NOTE: perhaps this crate needs to be recompiled
20+
//~| NOTE: perhaps that crate needs to be recompiled
2121
//~| NOTE: crate `a` path #1:
2222
//~| NOTE: crate `b` path #1:
2323

src/test/compile-fail/svh-use-trait.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
2323
extern crate uta;
2424
extern crate utb; //~ ERROR: found possibly newer version of crate `uta` which `utb` depends
25-
//~| NOTE: perhaps this crate needs to be recompiled?
25+
//~| NOTE: perhaps that crate needs to be recompiled?
2626
//~| NOTE: crate `uta` path #1:
2727
//~| NOTE: crate `utb` path #1:
2828

src/test/run-make/many-crates-but-no-match/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ all:
2828
# Ensure crateC fails to compile since A1 is "missing" and A2/A3 hashes do not match
2929
$(RUSTC) -L $(A2) -L $(A3) crateC.rs >$(LOG) 2>&1 || true
3030
grep "error: found possibly newer version of crate \`crateA\` which \`crateB\` depends on" $(LOG)
31-
grep "note: perhaps this crate needs to be recompiled?" $(LOG)
31+
grep "note: perhaps that crate needs to be recompiled?" $(LOG)
3232
grep "note: crate \`crateA\` path #1:" $(LOG)
3333
grep "note: crate \`crateA\` path #2:" $(LOG)
3434
grep "note: crate \`crateB\` path #1:" $(LOG)

0 commit comments

Comments
 (0)