summaryrefslogtreecommitdiff
path: root/src/parse/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/tests.rs')
-rw-r--r--src/parse/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/tests.rs b/src/parse/tests.rs
index 588ff765..d76c6dca 100644
--- a/src/parse/tests.rs
+++ b/src/parse/tests.rs
@@ -409,7 +409,7 @@ fn test_parse_values() {
v!("true" => Bool(true));
v!("false" => Bool(false));
v!("1.0e-4" => Float(1e-4));
- v!("3.14" => Float(3.14));
+ v!("3.15" => Float(3.15));
v!("50%" => Percent(50.0));
v!("4.5cm" => Len(Length::cm(4.5)));
v!("12e1pt" => Len(Length::pt(12e1)));