diff --git a/tests/misc.rs b/tests/misc.rs index 7c80b86..da26c21 100644 --- a/tests/misc.rs +++ b/tests/misc.rs @@ -3,12 +3,6 @@ #[macro_use] mod macros; -// test!( -// combines_hyphens, -// "a {\n foo: bar - baz;\n}\n", -// "a {\n foo: bar-baz;\n}\n" -// ); -test!(does_not_combine_hyphens, "a {\n foo: bar -baz;\n}\n"); test!( ident_starts_with_hyphen, "a {\n foo: -webkit-bar-baz;\n}\n" @@ -25,6 +19,6 @@ test!( "a {\n height: !important 1;\n}\n" ); test!( - double_newline_between_unrelated_styles, + emits_double_newline_between_unrelated_styles, "a {\n color: red;\n}\n\nb {\n color: blue;\n}\n" );