Skip to content

Commit

Permalink
remove extra brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianBeilschmidt committed Aug 16, 2022
1 parent 94464c6 commit 023b12c
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/raster/rasterize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,21 +131,18 @@ mod tests {
c_options.fetch_name_value("ALL_TOUCHED").unwrap(),
Some("FALSE".to_string())
);
assert_eq!(
c_options.fetch_name_value("BURN_VALUE_FROM").unwrap(),
(None)
);
assert_eq!(c_options.fetch_name_value("BURN_VALUE_FROM").unwrap(), None);
assert_eq!(
c_options.fetch_name_value("MERGE_ALG").unwrap(),
(Some("REPLACE".to_string()))
Some("REPLACE".to_string())
);
assert_eq!(
c_options.fetch_name_value("CHUNKYSIZE").unwrap(),
(Some("0".to_string()))
Some("0".to_string())
);
assert_eq!(
c_options.fetch_name_value("OPTIM").unwrap(),
(Some("AUTO".to_string()))
Some("AUTO".to_string())
);
}
}
Expand Down

0 comments on commit 023b12c

Please sign in to comment.