Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Samuels committed Mar 15, 2024
1 parent c8d8db6 commit a71ab8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ fn high_level_writer() {
.collect();
assert_eq!(
format!("{:.4?}", a),
r#"[("Ff", 34.0000, 22.0000), ("Ff", 3.1415, 2.7182)]"#
r#"[("Ff", 34.0000, 22.0000), ("Ff", 3.1416, 2.7183)]"#
);
let a: Vec<(String, String)> = r.get("c").map(|m| (m.get(0), m.get(1))).collect();
assert_eq!(
Expand Down Expand Up @@ -931,7 +931,7 @@ fn high_level_writer2() {
.collect();
assert_eq!(
format!("{:.4?}", a),
r#"[("Ff", 34.0000, 22.0000), ("Ff", 3.1415, 2.7182)]"#
r#"[("Ff", 34.0000, 22.0000), ("Ff", 3.1416, 2.7183)]"#
);
let a: Vec<(String, String)> = r.get("c").map(|m| (m.get(0), m.get(1))).collect();
assert_eq!(
Expand Down

0 comments on commit a71ab8d

Please sign in to comment.