diff options
| author | Fabian Drinck <fabian.drinck@rwth-aachen.de> | 2019-03-17 21:07:57 +0100 |
|---|---|---|
| committer | Fabian Drinck <fabian.drinck@rwth-aachen.de> | 2019-03-30 22:37:02 +0100 |
| commit | df80eae985e80e0907c1ebde4caf1d7cc8acbc21 (patch) | |
| tree | ce77f34258a0f59a56b77e54330d475552d3c9e0 /src/test | |
| parent | 8fb05491514c5cfb3c3aa03e0266389fa0b29ed0 (diff) | |
| download | rust-df80eae985e80e0907c1ebde4caf1d7cc8acbc21.tar.gz rust-df80eae985e80e0907c1ebde4caf1d7cc8acbc21.zip | |
Change message to present tense
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/lint/lint-unused-imports.stderr | 4 | ||||
| -rw-r--r-- | src/test/ui/lint/use-redundant.stderr | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/ui/lint/lint-unused-imports.stderr b/src/test/ui/lint/lint-unused-imports.stderr index b37f25ec017..96d71a228a5 100644 --- a/src/test/ui/lint/lint-unused-imports.stderr +++ b/src/test/ui/lint/lint-unused-imports.stderr @@ -45,7 +45,7 @@ LL | | fn f() { LL | | self::g(); LL | | } LL | | } - | |_- the item `g` was already defined here + | |_- the item `g` is already defined here error: unused import: `self::g` --> $DIR/lint-unused-imports.rs:68:9 @@ -57,7 +57,7 @@ error: the item `foo` is imported redundantly --> $DIR/lint-unused-imports.rs:78:9 | LL | use test2::{foo, bar}; - | --- the item `foo` was already imported here + | --- the item `foo` is already imported here ... LL | use test2::foo; | ^^^^^^^^^^ diff --git a/src/test/ui/lint/use-redundant.stderr b/src/test/ui/lint/use-redundant.stderr index 82d2312779e..3554443590a 100644 --- a/src/test/ui/lint/use-redundant.stderr +++ b/src/test/ui/lint/use-redundant.stderr @@ -20,7 +20,7 @@ warning: the item `Bar` is imported redundantly --> $DIR/use-redundant.rs:21:9 | LL | use crate::foo::Bar; - | --------------- the item `Bar` was already imported here + | --------------- the item `Bar` is already imported here ... LL | use crate::foo::Bar; | ^^^^^^^^^^^^^^^ @@ -29,7 +29,7 @@ warning: the item `S` is imported redundantly --> $DIR/use-redundant.rs:25:9 | LL | use m1::*; - | ----- the item `S` was already imported here + | ----- the item `S` is already imported here ... LL | use m1::S; | ^^^^^ |
