summaryrefslogtreecommitdiffstats
path: root/tests/file_yaml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/file_yaml.rs')
-rw-r--r--tests/file_yaml.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/file_yaml.rs b/tests/file_yaml.rs
index 927c108..233b92c 100644
--- a/tests/file_yaml.rs
+++ b/tests/file_yaml.rs
@@ -45,8 +45,8 @@ fn test_file() {
assert!(s.debug.approx_eq_ulps(&1.0, 2));
assert_eq!(s.production, Some("false".to_string()));
assert_eq!(s.place.name, "Torre di Pisa");
- assert!(s.place.longitude.approx_eq_ulps(&43.7224985, 2));
- assert!(s.place.latitude.approx_eq_ulps(&10.3970522, 2));
+ assert!(s.place.longitude.approx_eq_ulps(&43.722_498_5, 2));
+ assert!(s.place.latitude.approx_eq_ulps(&10.397_052_2, 2));
assert!(!s.place.favorite);
assert_eq!(s.place.reviews, 3866);
assert_eq!(s.place.rating, Some(4.5));