From 231252a9d97e7875c59c6805d93105be69361e04 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Sun, 2 Feb 2020 17:44:39 -0500 Subject: [PATCH] Remove redundant tests --- tests/misc.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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" );