From eb2f3ebe5a68ef7a2e39e94eeffee06a39d60c34 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Sat, 16 May 2020 22:46:13 -0400 Subject: [PATCH] remove ;; in tests --- tests/list.rs | 2 +- tests/map.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/list.rs b/tests/list.rs index 5bbafda..e68c5ae 100644 --- a/tests/list.rs +++ b/tests/list.rs @@ -253,7 +253,7 @@ test!( ); test!( 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" ); test!( diff --git a/tests/map.rs b/tests/map.rs index 5596d42..37d3258 100644 --- a/tests/map.rs +++ b/tests/map.rs @@ -131,7 +131,7 @@ test!( ); error!( 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!( display_map,