Skip to content

Commit 33c952e

Browse files
authored
fix: test variable renaming (#1007)
### Description Trivial renaming in one test case to match the thing being tested. ### Checklist Delete any checklist items that do not apply (e.g. if your change is minor, it may not require documentation updates). - [x] Pull request title follows [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) - [x] Pre-commit hooks pass (`prek run --all-files`)
1 parent e52f0bf commit 33c952e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

crates/extensions/src/authentication.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ mod tests {
180180

181181
#[test]
182182
fn item() {
183-
let collection: Item = stac::read("data/auth/item.json").unwrap();
184-
let authentication: Authentication = collection.extension().unwrap();
183+
let item: Item = stac::read("data/auth/item.json").unwrap();
184+
let authentication: Authentication = item.extension().unwrap();
185185
let _ = authentication.schemes.get("none").unwrap();
186186
}
187187

0 commit comments

Comments
 (0)