From 69da6e389f340e1f8784a18942f2c449c3777d6d Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Sat, 26 Aug 2023 17:19:21 +0200 Subject: [PATCH] Update test --- filters/filters_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filters/filters_test.go b/filters/filters_test.go index 6a500a3..ef665fc 100644 --- a/filters/filters_test.go +++ b/filters/filters_test.go @@ -63,7 +63,7 @@ var filterTests = []struct{ in, expected string }{ {`{{ "The _config.yml file" | slugify: 'pretty' }}`, "the-_config.yml-file"}, // {`{{ "nav\n\tmargin: 0" | sassify }}`, "nav {\n margin: 0; }"}, - {`{{ "nav {margin: 0}" | scssify }}`, "nav {\n margin: 0; }"}, + {`{{ "nav {margin: 0}" | scssify }}`, "nav {\n margin: 0;\n}"}, {`{{ "smartify single 'quotes' here" | smartify }}`, "smartify single ‘quotes’ here"}, {`{{ 'smartify double "quotes" here' | smartify }}`, "smartify double “quotes” here"},