clearer comment in tests

This commit is contained in:
ConnorSkees 2020-04-21 05:38:38 -04:00
parent 21dcbf0be9
commit 2567af74de

View File

@ -3,13 +3,13 @@
#[macro_use] #[macro_use]
mod macros; mod macros;
// this is `1` for libsass // this is `1` for node-sass, but .999999etc for web compiler
test!( test!(
precision_does_not_round_up, precision_does_not_round_up,
"a {\n color: 0.99999999991;\n}\n", "a {\n color: 0.99999999991;\n}\n",
"a {\n color: 0.9999999999;\n}\n" "a {\n color: 0.9999999999;\n}\n"
); );
// this is `1` for libsass // this is `1` for node-sass, but .999999etc for web compiler
test!( test!(
precision_does_round_up, precision_does_round_up,
"a {\n color: 1.00000000009;\n}\n", "a {\n color: 1.00000000009;\n}\n",