Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit d4691d0

Browse files
committed
Warnings
1 parent 80de2dd commit d4691d0

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

ci-gen/src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
use gh_actions_gen::actions::cargo_cache;
22
use gh_actions_gen::actions::cargo_doc;
3-
use gh_actions_gen::actions::cargo_test;
43
use gh_actions_gen::actions::checkout_sources;
54
use gh_actions_gen::actions::rust_install_toolchain;
65
use gh_actions_gen::actions::RustToolchain;
76
use gh_actions_gen::ghwf::Env;
87
use gh_actions_gen::ghwf::Job;
98
use gh_actions_gen::ghwf::Step;
10-
use gh_actions_gen::rustfmt::rustfmt_check_job;
119
use gh_actions_gen::super_linter::super_linter_job;
1210

13-
fn steps(os: Os, channel: RustToolchain) -> Vec<Step> {
11+
fn steps(_os: Os, channel: RustToolchain) -> Vec<Step> {
1412
let mut steps = Vec::new();
1513
steps.push(checkout_sources());
1614
steps.push(rust_install_toolchain(channel));

grpc/tests/client.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn server_is_not_running() {
2626
)
2727
.join_metadata_result(),
2828
);
29-
assert!(result.is_err(), result);
29+
assert!(result.is_err(), "{:?}", result);
3030
}
3131
}
3232

@@ -49,6 +49,6 @@ fn server_is_not_running_unix() {
4949
)
5050
.join_metadata_result(),
5151
);
52-
assert!(result.is_err(), result);
52+
assert!(result.is_err(), "{:?}", result);
5353
}
5454
}

0 commit comments

Comments
 (0)