add ignored subtraction test

This commit is contained in:
ConnorSkees 2020-04-20 02:06:45 -04:00
parent a8e97984d4
commit 9103a1d0d8

View File

@ -193,3 +193,9 @@ test!(
"a {\n color: 10 - 10;\n}\n", "a {\n color: 10 - 10;\n}\n",
"a {\n color: 0;\n}\n" "a {\n color: 0;\n}\n"
); );
test!(
#[ignore]
sub_no_space_interpolation,
"a {\n color: 10-#{10};\n}\n",
"a {\n color: 10 -10;\n}\n"
);