remove ;; in tests

This commit is contained in:
ConnorSkees 2020-05-16 22:46:13 -04:00
parent 4ee82e66be
commit eb2f3ebe5a
2 changed files with 2 additions and 2 deletions

View File

@ -253,7 +253,7 @@ test!(
); );
test!( test!(
null_values_in_list_ommitted, null_values_in_list_ommitted,
"a {\n color: 1, null, null;;\n}\n", "a {\n color: 1, null, null;\n}\n",
"a {\n color: 1;\n}\n" "a {\n color: 1;\n}\n"
); );
test!( test!(

View File

@ -131,7 +131,7 @@ test!(
); );
error!( error!(
duplicate_key_in_declaration, duplicate_key_in_declaration,
"a {\n $a: (foo: a, foo: b);;\n}\n", "Error: Duplicate key." "a {\n $a: (foo: a, foo: b);\n}\n", "Error: Duplicate key."
); );
error!( error!(
display_map, display_map,