We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c82711 commit 6a59921Copy full SHA for 6a59921
.github/workflows/server-ci.yml
@@ -35,7 +35,7 @@ jobs:
35
uses: actions-rs/cargo@v1
36
with:
37
command: clippy
38
- args: --manifest-path server/Cargo.toml --all --all-targets --all-features
+ args: --manifest-path server/Cargo.toml --all --all-targets --all-features -- -D warnings
39
40
- name: rustfmt
41
server/svix-server/src/queue/mod.rs
@@ -216,7 +216,7 @@ mod tests {
216
.await
217
.unwrap()
218
.into_iter()
219
- .nth(0)
+ .next()
220
.unwrap();
221
222
assert_eq!(recv.task, mock_message("test".to_owned()));
@@ -248,7 +248,7 @@ mod tests {
248
249
250
251
252
253
assert_eq!(&recv.task, &mock_message("test".to_owned()));
254
0 commit comments