Skip to content

Commit

Permalink
satisfy rustfmt again
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Femmer committed Sep 4, 2024
1 parent a1fbd2e commit 0986eba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,8 @@ mod tests {
let installed_charts: Vec<InstalledChart> =
serde_json::from_slice(JSON_RESPONSE.as_bytes()).expect("can not parse json");
assert_eq!(installed_charts.len(), 1);
let test_chart = installed_charts.first()
let test_chart = installed_charts
.first()
.expect("can not grab the first result");
assert_eq!(test_chart.name, "test_chart");
assert_eq!(test_chart.chart, "test_chart-1.2.32-rc2");
Expand Down

0 comments on commit 0986eba

Please sign in to comment.