diff --git a/tests/values.rs b/tests/values.rs index d699425..dbcc2f6 100644 --- a/tests/values.rs +++ b/tests/values.rs @@ -307,14 +307,8 @@ test!( "a {\n color: 1 + foo();\n}\n", "a {\n color: 1foo();\n}\n" ); -test!( - positive_integer, - "a {\n color: 1;\n}\n" -); -test!( - negative_integer, - "a {\n color: -1;\n}\n" -); +test!(positive_integer, "a {\n color: 1;\n}\n"); +test!(negative_integer, "a {\n color: -1;\n}\n"); test!( positive_float_no_leading_zero, "a {\n color: .1;\n}\n", @@ -325,11 +319,5 @@ test!( "a {\n color: -.1;\n}\n", "a {\n color: -0.1;\n}\n" ); -test!( - positive_float_leading_zero, - "a {\n color: 0.1;\n}\n" -); -test!( - negative_float_leading_zero, - "a {\n color: -0.1;\n}\n" -); +test!(positive_float_leading_zero, "a {\n color: 0.1;\n}\n"); +test!(negative_float_leading_zero, "a {\n color: -0.1;\n}\n");