Compare commits

..

1 commit

Author SHA1 Message Date
Antoine Martin 36154b6780 all: fix clippy lints for rust 1.65 2022-12-06 01:17:46 +01:00
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v2
- name: Format - name: Format
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Lint - name: Lint

View file

@ -223,7 +223,7 @@ mod tests {
let matches = assign_field_positions(fields, tickets); let matches = assign_field_positions(fields, tickets);
let expected = ["row", "class", "seat"] let expected = (&["row", "class", "seat"])
.iter() .iter()
.copied() .copied()
.enumerate() .enumerate()