Skip to content

Commit

Permalink
make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk committed Jan 16, 2024
1 parent 36c00d9 commit aa2e4e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/geodesic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1648,8 +1648,8 @@ mod tests {
fn test_arcdirect() {
// Corresponds with ArcDirectCheck from Java, or test_arcdirect from Python
let geod = Geodesic::wgs84();
for (_line_num, (lat1, lon1, azi1, lat2, lon2, azi2, s12, a12, m12, M12, M21, S12)) in
TESTCASES.iter().enumerate()
for (lat1, lon1, azi1, lat2, lon2, azi2, s12, a12, m12, M12, M21, S12) in
TESTCASES.iter()
{
let (
_computed_a12,
Expand Down

0 comments on commit aa2e4e1

Please sign in to comment.