From 5689ae0131005f335caf4caec17c34aa6a536433 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Mon, 1 Jun 2020 21:36:08 -0400 Subject: [PATCH] resolve malformed tests --- tests/equality.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/equality.rs b/tests/equality.rs index d6fb7d9..b68bc52 100644 --- a/tests/equality.rs +++ b/tests/equality.rs @@ -50,11 +50,11 @@ test!( ); test!( different_quoting_inside_list_eq, - "a {\n color: ("foo",) == (foo,);\n}\n", + "a {\n color: (\"foo\",) == (foo,);\n}\n", "a {\n color: true;\n}\n" ); test!( different_quoting_inside_list_ne, - "a {\n color: ("foo",) != (foo,);\n}\n", + "a {\n color: (\"foo\",) != (foo,);\n}\n", "a {\n color: false;\n}\n" );