Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv authored Feb 16, 2019
1 parent 09b69eb commit 9b519c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geo-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ mod test {
let p: Point<f32> = Point::new(0., 0.);
let p1 = p.clone();
let g: Geometry<f32> = p.into();
let p2 = g.as_point().unwrap();
let p2 = g.into_point().unwrap();
assert_eq!(p1, p2);
}

Expand Down

0 comments on commit 9b519c4

Please sign in to comment.